From 78ba9eae5a122199d9682707b5ac590a4a627c83 Mon Sep 17 00:00:00 2001 From: eug-vs Date: Thu, 10 Dec 2020 22:01:48 +0300 Subject: chore: cleanup configs --- .local/bin/i3_tmux_vim_focus | Bin 17272 -> 17272 bytes .local/bin/i3_tmux_vim_focus.c | 5 +---- 2 files changed, 1 insertion(+), 4 deletions(-) (limited to '.local') diff --git a/.local/bin/i3_tmux_vim_focus b/.local/bin/i3_tmux_vim_focus index bf156f9..d62a881 100755 Binary files a/.local/bin/i3_tmux_vim_focus and b/.local/bin/i3_tmux_vim_focus differ 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")) -- cgit v1.2.3