File data/vifmrc-osx changed (mode: 100644) (index c63268f91..8106bb9b7) |
1 |
1 |
" vim: filetype=vifm : |
" vim: filetype=vifm : |
2 |
2 |
" |
" |
3 |
|
" Sample configuration file for vifm on OSX (last updated: 18 March, 2025) |
|
|
3 |
|
" Sample configuration file for vifm on OSX (last updated: 23 March, 2025) |
4 |
4 |
" |
" |
5 |
5 |
" You can edit this file by hand. The " character at the beginning of a line |
" You can edit this file by hand. The " character at the beginning of a line |
6 |
6 |
" comments out the line. Blank lines are ignored. The basic format for each |
" comments out the line. Blank lines are ignored. The basic format for each |
|
... |
... |
nnoremap S :sort<cr> |
394 |
394 |
nnoremap w :view<cr> |
nnoremap w :view<cr> |
395 |
395 |
vnoremap w :view<cr>gv |
vnoremap w :view<cr>gv |
396 |
396 |
|
|
397 |
|
" Open file in new MacVim tab |
|
398 |
|
nnoremap o :!mvim --remote-tab-silent %f<cr> |
|
399 |
|
" Open file in new MacVim window |
|
400 |
|
nnoremap O :!mvim %f<cr> |
|
|
397 |
|
if executable('mvim') |
|
398 |
|
" Open file in new MacVim tab |
|
399 |
|
nnoremap o :!mvim --remote-tab-silent %f<cr> |
|
400 |
|
" Open file in new MacVim window |
|
401 |
|
nnoremap O :!mvim %f<cr> |
|
402 |
|
endif |
401 |
403 |
|
|
402 |
404 |
" Open file in the background using its default program |
" Open file in the background using its default program |
403 |
405 |
nnoremap gb :!open -g %f<cr> |
nnoremap gb :!open -g %f<cr> |
|
... |
... |
nnoremap A cw |
423 |
425 |
|
|
424 |
426 |
" Open editor to edit vifmrc and apply settings after returning to vifm |
" Open editor to edit vifmrc and apply settings after returning to vifm |
425 |
427 |
nnoremap ,c :write | edit $MYVIFMRC | restart full<cr> |
nnoremap ,c :write | edit $MYVIFMRC | restart full<cr> |
|
428 |
|
|
426 |
429 |
" Open MacVim to edit vifmrc |
" Open MacVim to edit vifmrc |
427 |
|
nnoremap ,C :!mvim --remote-tab-silent $MYVIFMRC &<cr> |
|
|
430 |
|
if executable('mvim') |
|
431 |
|
nnoremap ,C :!mvim --remote-tab-silent $MYVIFMRC &<cr> |
|
432 |
|
endif |
428 |
433 |
|
|
429 |
434 |
" Toggle wrap setting on ,w key |
" Toggle wrap setting on ,w key |
430 |
435 |
nnoremap ,w :set wrap!<cr> |
nnoremap ,w :set wrap!<cr> |