Skip to content

Commit 522bde4

Browse files
authored
fix(docs) Add commas in example config for docs (#1447)
1 parent 79434c2 commit 522bde4

File tree

1 file changed

+46
-46
lines changed

1 file changed

+46
-46
lines changed

doc/nvim-tree-lua.txt

Lines changed: 46 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -1027,52 +1027,52 @@ DEFAULT MAPPINGS *nvim-tree-default-mappings
10271027

10281028
>
10291029
view.mappings.list = { -- BEGIN_DEFAULT_MAPPINGS
1030-
{ key = { "<CR>", "o", "<2-LeftMouse>" }, action = "edit" }
1031-
{ key = "<C-e>", action = "edit_in_place" }
1032-
{ key = "O", action = "edit_no_picker" }
1033-
{ key = { "<C-]>", "<2-RightMouse>" }, action = "cd" }
1034-
{ key = "<C-v>", action = "vsplit" }
1035-
{ key = "<C-x>", action = "split" }
1036-
{ key = "<C-t>", action = "tabnew" }
1037-
{ key = "<", action = "prev_sibling" }
1038-
{ key = ">", action = "next_sibling" }
1039-
{ key = "P", action = "parent_node" }
1040-
{ key = "<BS>", action = "close_node" }
1041-
{ key = "<Tab>", action = "preview" }
1042-
{ key = "K", action = "first_sibling" }
1043-
{ key = "J", action = "last_sibling" }
1044-
{ key = "I", action = "toggle_git_ignored" }
1045-
{ key = "H", action = "toggle_dotfiles" }
1046-
{ key = "U", action = "toggle_custom" }
1047-
{ key = "R", action = "refresh" }
1048-
{ key = "a", action = "create" }
1049-
{ key = "d", action = "remove" }
1050-
{ key = "D", action = "trash" }
1051-
{ key = "r", action = "rename" }
1052-
{ key = "<C-r>", action = "full_rename" }
1053-
{ key = "x", action = "cut" }
1054-
{ key = "c", action = "copy" }
1055-
{ key = "p", action = "paste" }
1056-
{ key = "y", action = "copy_name" }
1057-
{ key = "Y", action = "copy_path" }
1058-
{ key = "gy", action = "copy_absolute_path" }
1059-
{ key = "[e", action = "prev_diag_item" }
1060-
{ key = "[c", action = "prev_git_item" }
1061-
{ key = "]e", action = "next_diag_item" }
1062-
{ key = "]c", action = "next_git_item" }
1063-
{ key = "-", action = "dir_up" }
1064-
{ key = "s", action = "system_open" }
1065-
{ key = "f", action = "live_filter" }
1066-
{ key = "F", action = "clear_live_filter" }
1067-
{ key = "q", action = "close" }
1068-
{ key = "W", action = "collapse_all" }
1069-
{ key = "E", action = "expand_all" }
1070-
{ key = "S", action = "search_node" }
1071-
{ key = ".", action = "run_file_command" }
1072-
{ key = "<C-k>", action = "toggle_file_info" }
1073-
{ key = "g?", action = "toggle_help" }
1074-
{ key = "m", action = "toggle_mark" }
1075-
{ key = "bmv", action = "bulk_move" }
1030+
{ key = { "<CR>", "o", "<2-LeftMouse>" }, action = "edit" },
1031+
{ key = "<C-e>", action = "edit_in_place" },
1032+
{ key = "O", action = "edit_no_picker" },
1033+
{ key = { "<C-]>", "<2-RightMouse>" }, action = "cd" },
1034+
{ key = "<C-v>", action = "vsplit" },
1035+
{ key = "<C-x>", action = "split" },
1036+
{ key = "<C-t>", action = "tabnew" },
1037+
{ key = "<", action = "prev_sibling" },
1038+
{ key = ">", action = "next_sibling" },
1039+
{ key = "P", action = "parent_node" },
1040+
{ key = "<BS>", action = "close_node" },
1041+
{ key = "<Tab>", action = "preview" },
1042+
{ key = "K", action = "first_sibling" },
1043+
{ key = "J", action = "last_sibling" },
1044+
{ key = "I", action = "toggle_git_ignored" },
1045+
{ key = "H", action = "toggle_dotfiles" },
1046+
{ key = "U", action = "toggle_custom" },
1047+
{ key = "R", action = "refresh" },
1048+
{ key = "a", action = "create" },
1049+
{ key = "d", action = "remove" },
1050+
{ key = "D", action = "trash" },
1051+
{ key = "r", action = "rename" },
1052+
{ key = "<C-r>", action = "full_rename" },
1053+
{ key = "x", action = "cut" },
1054+
{ key = "c", action = "copy" },
1055+
{ key = "p", action = "paste" },
1056+
{ key = "y", action = "copy_name" },
1057+
{ key = "Y", action = "copy_path" },
1058+
{ key = "gy", action = "copy_absolute_path" },
1059+
{ key = "[e", action = "prev_diag_item" },
1060+
{ key = "[c", action = "prev_git_item" },
1061+
{ key = "]e", action = "next_diag_item" },
1062+
{ key = "]c", action = "next_git_item" },
1063+
{ key = "-", action = "dir_up" },
1064+
{ key = "s", action = "system_open" },
1065+
{ key = "f", action = "live_filter" },
1066+
{ key = "F", action = "clear_live_filter" },
1067+
{ key = "q", action = "close" },
1068+
{ key = "W", action = "collapse_all" },
1069+
{ key = "E", action = "expand_all" },
1070+
{ key = "S", action = "search_node" },
1071+
{ key = ".", action = "run_file_command" },
1072+
{ key = "<C-k>", action = "toggle_file_info" },
1073+
{ key = "g?", action = "toggle_help" },
1074+
{ key = "m", action = "toggle_mark" },
1075+
{ key = "bmv", action = "bulk_move" },
10761076
} -- END_DEFAULT_MAPPINGS
10771077
<
10781078
==============================================================================

0 commit comments

Comments
 (0)