xaizek / vifm (License: GPLv2+) (since 2018-12-07)
Vifm is a file manager with curses interface, which provides Vi[m]-like environment for managing objects within file systems, extended with some useful ideas from mutt.
Commit 587090b28bdeaa4ced63ed8d23ef49e12e480476

Check presence of mvim in vifmrc-osx
Thanks to martinengelke (a.k.a. sHii).
Author: xaizek
Author date (UTC): 2025-03-23 16:39
Committer name: xaizek
Committer date (UTC): 2025-03-23 16:39
Parent(s): 9151eb19473d46a95b7fd8dc2308a71daf290a27
Signing key: 99DC5E4DB05F6BE2
Tree: c523afc67784662dc397d68e84059cb8e7ff51c0
File Lines added Lines deleted
THANKS 1 0
data/vifmrc-osx 11 6
File THANKS changed (mode: 100644) (index 9c9150aa6..651816784)
... ... Marius Schmidl
195 195 Mark S. (Markuzcha) Mark S. (Markuzcha)
196 196 Markus Elfring (elfring) Markus Elfring (elfring)
197 197 Martin Fischer Martin Fischer
198 martinengelke (sHii)
198 199 Marton Balazs (balmar) Marton Balazs (balmar)
199 200 mateusz28 mateusz28
200 201 Matt Alexander (mattalexx) Matt Alexander (mattalexx)
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>
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/vifm

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/vifm

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master