diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2024-07-28 18:47:09 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2024-07-28 18:47:09 -0300 |
commit | 91baa371aaf7cfa58496f97405ae6b5c040ab8e4 (patch) | |
tree | d85ed84f4c248e22563b565c82864ba7453cac28 /vim.dot.link/plugin/window_title.vim | |
parent | 2a5476d79b9db791200a8d38ac7fd552aff46783 (diff) | |
download | vim-91baa371aaf7cfa58496f97405ae6b5c040ab8e4.tar.gz vim-91baa371aaf7cfa58496f97405ae6b5c040ab8e4.tar.bz2 |
Fix: coding style
Diffstat (limited to 'vim.dot.link/plugin/window_title.vim')
-rw-r--r-- | vim.dot.link/plugin/window_title.vim | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/vim.dot.link/plugin/window_title.vim b/vim.dot.link/plugin/window_title.vim index bb82977..b602af1 100644 --- a/vim.dot.link/plugin/window_title.vim +++ b/vim.dot.link/plugin/window_title.vim @@ -18,10 +18,10 @@ augroup END " " Thanks to http://stackoverflow.com/questions/1673649/vimrc-action-onclose function! ResetTitle(title) - " disable vim's ability to set the title - exec "set title t_ts='' t_fs=''" + " disable vim's ability to set the title + exec "set title t_ts='' t_fs=''" - " and restore it - "exec ":!echo -e '\033kbash\033\\'\<CR>" - exec ":!xtitle -q " a:title + " and restore it + "exec ":!echo -e '\033kbash\033\\'\<CR>" + exec ":!xtitle -q " a:title endfunction |