2016-08-30 13:20:12 +02:00
|
|
|
# http://ranger.nongnu.org
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2016-09-28 20:34:16 +02:00
|
|
|
def ranger-open-on-edit-directory \
|
2016-10-11 09:03:41 +02:00
|
|
|
-docstring 'Start the ranger file system explorer when trying to edit a directory' %{
|
2016-09-28 20:34:16 +02:00
|
|
|
hook global RuntimeError "\d+:\d+: '\w+' (.*): is a directory" %{ %sh{
|
|
|
|
directory=$(expr $kak_hook_param : "[0-9]*:[0-9]*: '[a-z]*' \\(.*\\): is a directory")
|
|
|
|
echo ranger $directory
|
|
|
|
}}
|
|
|
|
}
|
2016-08-30 13:20:12 +02:00
|
|
|
|
2016-10-11 09:03:41 +02:00
|
|
|
def \
|
|
|
|
-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 eval -client $kak_client edit {file} | \
|
|
|
|
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 eval -client $kak_client edit {file} | \
|
|
|
|
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
|
|
|
|
}}
|