forked from LunarVim/LunarVim
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Chris
committed
Aug 7, 2020
1 parent
c283a7c
commit 0a8ad44
Showing
5 changed files
with
64 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
let g:far#source='rgnvim' | ||
|
||
let g:far#file_mask_favorites=['%', '**/*.*', '**/*.html', '**/*.js', '**/*.css', '**/*.vim'] | ||
|
||
let g:far#enable_undo=1 | ||
|
||
|
||
|
||
|
||
" 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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters