kakoune/rc/extra/ranger.kak

37 lines
1.5 KiB
Plaintext
Raw Normal View History

2016-08-30 13:20:12 +02:00
# http://ranger.nongnu.org
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
define-command ranger-open-on-edit-directory \
-docstring 'Start the ranger file system explorer when trying to edit a directory' %{
hook global RuntimeError "\d+:\d+: '\w+' (.*): is a directory" %{ %sh{
directory=$kak_hook_param_capture_1
echo ranger $directory
}}
}
2016-08-30 13:20:12 +02:00
define-command \
-params .. -file-completion \
-docstring %{ranger [<arguments>]: open the file system explorer to select buffers to open
All the optional arguments are forwarded to the ranger utility} \
ranger %{ %sh{
2016-08-30 13:20:12 +02:00
if [ -n "$TMUX" ]; then
2016-09-26 11:51:53 +02:00
tmux split-window -h \
ranger $@ --cmd " \
map <return> eval \
fm.execute_console('shell \
echo evaluate-commands -client $kak_client edit {file} | \
2016-09-26 11:51:53 +02:00
kak -p $kak_session; \
tmux select-pane -t $kak_client_env_TMUX_PANE'.format(file=fm.thisfile.path)) \
if fm.thisfile.is_file else fm.execute_console('move right=1')"
2016-08-30 13:20:12 +02:00
elif [ -n "$WINDOWID" ]; then
2016-09-26 11:51:53 +02:00
setsid $kak_opt_termcmd " \
ranger $@ --cmd "'"'" \
map <return> eval \
fm.execute_console('shell \
echo evaluate-commands -client $kak_client edit {file} | \
2016-09-26 11:51:53 +02:00
kak -p $kak_session; \
xdotool windowactivate $kak_client_env_WINDOWID'.format(file=fm.thisfile.path)) \
if fm.thisfile.is_file else fm.execute_console('move right=1')"'"' < /dev/null > /dev/null 2>&1 &
2016-08-30 13:20:12 +02:00
fi
}}