diff options
Diffstat (limited to '.local')
-rwxr-xr-x | .local/bin/i3_tmux_vim_focus | bin | 17272 -> 17272 bytes | |||
-rwxr-xr-x | .local/bin/i3_tmux_vim_focus.c | 5 |
2 files changed, 1 insertions, 4 deletions
diff --git a/.local/bin/i3_tmux_vim_focus b/.local/bin/i3_tmux_vim_focus Binary files differindex bf156f9..d62a881 100755 --- a/.local/bin/i3_tmux_vim_focus +++ b/.local/bin/i3_tmux_vim_focus diff --git a/.local/bin/i3_tmux_vim_focus.c b/.local/bin/i3_tmux_vim_focus.c index 1429e3a..8f0d075 100755 --- a/.local/bin/i3_tmux_vim_focus.c +++ b/.local/bin/i3_tmux_vim_focus.c @@ -36,8 +36,7 @@ int main(int argc, char *argv[]) { xdo_get_active_window(xdo, &window_ret); xdo_get_window_name(xdo, window_ret, &name, &name_len, &name_type); - puts(name); - if(strstr(name, "VIM") || strstr(name, "vim") && !strstr(name, "i3_tmux_vim_focus")) + if(strstr(name, "VIM") || strstr(name, "vim")) { strcpy(cmd, "Ctrl+c+Ctrl+"); @@ -46,8 +45,6 @@ int main(int argc, char *argv[]) { (argv[1][0] == 'd')? "j" : (argv[1][0] == 'u')? "k" : "l" ); - puts(cmd); - xdo_send_keysequence_window(xdo, window_ret, cmd, 0); } else if(strstr(name, "tmux")) |