This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/vim/.vim/bundle/taglist/plugin/taglist.vim b/vim/.vim/bundle/taglist/plugin/taglist.vim | |
index 59901f6..74487a1 100644 | |
--- a/vim/.vim/bundle/taglist/plugin/taglist.vim | |
+++ b/vim/.vim/bundle/taglist/plugin/taglist.vim | |
@@ -4097,6 +4097,11 @@ endfunction | |
" window. Used after entering a tab. If this is not done, then the folds | |
" are not properly created for taglist windows displayed in multiple tabs. | |
function! s:Tlist_Refresh_Folds() | |
+ | |
+ if g:Tlist_Show_One_File |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Automatically create dir to write file to if it doesn't exist | |
function! AutoMkDir() | |
let required_dir = expand("<afile>:p:h") | |
if !isdirectory(required_dir) | |
if confirm("Directory '" . required_dir . "' doesn't exist.", "&Abort\n&Create it") != 2 | |
bdelete | |
return | |
endif | |
try |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name JIRA: Prevent Alt+[123] hijacking | |
// @include *RapidBoard.jsp* | |
// @version 1 | |
// @grant none | |
// ==/UserScript== | |
// From https://jira.atlassian.com/browse/JSWSERVER-12296 | |
document.body.addEventListener('keypress', function (event) { |