summaryrefslogtreecommitdiff
path: root/lua/nv-far/init.lua
blob: 818e7a96c199c0dbc1289a33353f195363cf3794 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
vim.cmd([[
set lazyredraw            " improve scrolling performance when navigating through large results

let g:far#window_width=30
" Use %:p with buffer option only
let g:far#file_mask_favorites=['%:p', '**/*.*', '**/*.js', '**/*.py', '**/*.java', '**/*.css', '**/*.html', '**/*.vim', '**/*.cpp', '**/*.c', '**/*.h', ]
let g:far#window_min_content_width=30
let g:far#enable_undo=1

" let g:far#ignore_files=['$HOME/.config/nvim/utils/farignore']
" let g:far#ignore_files=['node_modules/']

"     Below are the default mappings and corresponding variable names in

" x v_x   - Exclude item under the cursor.

" i v_i   - Include item under the cursor.

" t v_t   - Toggle item exclusion under the cursor.

" f v_f   - Smartly toggle item exclusion under the cursor: exclude all items when all are excluded, otherwise exclude all items.

" X       - Exclude all items.

" I       - Include all items.

" T       - Toggle exclusion for all items.

" F       - Smartly toggle exclusion for all items: include all items when all are excluded, otherwise exclude all items.

" <CR>    - Jump to the source code of the item under the cursor. See |far-jump|

" p       - Open preview window (if not) and scroll to the item under the cursor. See |far-preview|

" P       - Close preview window. See |far-preview|

" CTRL-K  - Scroll preview window up (if open). See |far-preview|, |g:far#preview_window_scroll_step|

" CTRL-J  - Scroll preview window down (if open). See |far-preview|, |g:far#preview_window_scroll_step|

" zo      - Expand node under the cursor.

" zc      - Collapse node under the cursor.

" za      - Toggle node expanding under the cursor.

" zs      - Smartly toggle exclusion for all nodes: expand all nodes when all are collapsed, otherwise collapse all nodes.

" zr v_zr - Expand all nodes.

" zm v_zm - Collapse all nodes.

" zA v_zA - Toggle exclusion for all nodes.

" zS v_zS - Smartly toggle exclusion for all nodes: expand all nodes when all are collapsed, otherwise collapse all nodes.

" s v_s   - Execute |:Fardo|<CR>, to replace all included items.

" u v_s   - Execute |:Farundo|<CR>, to undo the last replacement by |:Fardo|.

" U v_U   - Execute |:Farundo| --all=1<CR>, to undo all replacements by |:Fardo|. For param '--all=' see |farundo-params|.

" q v_q   - Close searching result buffer and its preview buffer (if exists)

]])