1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389
|
"
" Useful buffer, file and window related functions.
"
" Author: Hari Krishna Dara <hari_vim@yahoo.com>
" Last Modified: 03-Dec-2002 @ 13:16
" Requires: Vim-6.0, multvals.vim(2.0.5)
" Version: 1.3.0
" Licence: This program is free software; you can redistribute it and/or
" modify it under the terms of the GNU General Public License.
" See http://www.gnu.org/copyleft/gpl.txt
" Download From:
" http://vim.sourceforge.net/scripts/script.php?script_id=197
" Description:
" - Scriptlets, g:makeArgumentString and g:makeArgumentList, and a function
" CreateArgString() to work with and pass variable number of arguments to
" other functions.
" - Misc. window/buffer related functions, NumberOfWindows(),
" FindWindowForBuffer(), FindBufferForName(), MoveCursorToWindow(),
" MoveCurLineToWinLine(), SetupScratchBuffer(), MapAppendCascaded()
" - Save/Restore all the window height/width settings to be restored later.
" - Save/Restore position in the buffer to be restored later. Works like the
" built-in marks feature, but has more to it.
" - NotifyWindowClose() to get notifications *after* a window with the
" specified buffer has been closed or the buffer is unloaded. The built-in
" autocommands can only notify you *before* the window is closed. You can
" use this with the Save/Restore window settings feature to restore the
" user windows, after your window is closed. I have used this utility in
" selectbuf.vim to restore window dimensions after the browser window is
" closed. To add your function to be notified when a window is closed, use
" the function:
"
" function! AddNotifyWindowClose(windowTitle, functionName)
"
" There is also a test function called RunNotifyWindowCloseTest() that
" demos the usage.
" - ShowLinesWithSyntax() function to echo lines with syntax coloring.
" - ShiftWordInSpace(), CenterWordInSpace() and
" AlignWordWithWordInPreviousLine() utility functions to move words in the
" space without changing the width of the field.
" - A quick-sort functions QSort() that can sort a buffer contents by range
" and QSort2() that can sort any arbitrary data and utility compare
" methods. Binary search functions BinSearchForInsert() and
" BinSearchForInsert2() to find the location for a newline to be inserted
" in an already sorted buffer or arbitrary data.
" - A useful ExecMap() function to facilitate recovering from typing errors
" in normal mode mappings (see below for examples). Normally when you make
" mistakes in typing normal mode commands, vim beeps at you and aborts the
" command. But this method allows you to continue typing the command and
" even backspace on errors.
" - A sample function to extract the scriptId of a script.
" - New CommonPath() function to extract the common part of two paths, and
" RelPathFromFile() and RelPathFromDir() to find relative paths (useful
" HTML href's). A side effect is the CommonString() function to find the
" common string of two strings.
" - Functions to have persistent data, PutPersistentVar() and
" GetPersistentVar(). You don't need to worry about saving in files and
" reading them back. To disable, set g:genutilsNoPersist in your vimrc.
"
" Example: Put the following in a file called t.vim in your plugin
" directory and watch the magic. You can set new value using SetVar() and
" see that it returns the same value across session when GetVar() is
" called.
" >>>>t.vim<<<<
" au VimEnter * call LoadSettings()
" au VimLeavePre * call SaveSettings()
"
" function! LoadSettings()
" let s:tVar = GetPersistentVar("T", "tVar", "defVal")
" endfunction
"
" function! SaveSettings()
" call PutPersistentVar("T", "tVar", s:tVar)
" endfunction
"
" function! SetVar(val)
" let s:tVar = a:val
" endfunction
"
" function! GetVar()
" return s:tVar
" endfunction
" <<<<t.vim>>>>
"
" - Place the following in your vimrc if you find them useful:
"
" command! DiffOff :call CleanDiffOptions()
"
" command! -nargs=0 -range=% SortByLength <line1>,<line2>call QSort(
" \ 's:CmpByLengthNname', 1)
" command! -nargs=0 -range=% RSortByLength <line1>,<line2>call QSort(
" \ 's:CmpByLineLengthNname', -1)
" command! -nargs=0 -range=% SortJavaImports <line1>,<line2>call QSort(
" \ 's:CmpJavaImports', 1)
"
" nnoremap \ :call ExecMap('\')<CR>
" nnoremap _ :call ExecMap('_')<CR>
"
" nnoremap <silent> <C-Space> :call ShiftWordInSpace(1)<CR>
" nnoremap <silent> <C-BS> :call ShiftWordInSpace(-1)<CR>
" nnoremap <silent> \cw :call CenterWordInSpace()<CR>
"
" nnoremap <silent> \va :call AlignWordWithWordInPreviousLine()<CR>
" TODO:
" - fnamemodify() on Unix doesn't expand to full name if a name containing
" path components is passed in.
"
if exists("loaded_genutils")
finish
endif
let loaded_genutils = 1
" Execute this following variable in your function to make a string containing
" all your arguments. The string can be used to pass the variable number of
" arguments received by your script further down into other functions.
" Uses __argCounter and __nextArg variables, so make sure you don't have
" variables with the same name.
" Ex:
" fu! s:IF(...)
" exec g:makeArgumentString
" exec "call Impl(" . argumentString . ")"
" endfu
let makeArgumentString = "
\ let __argCounter = 1\n
\ let argumentString = ''\n
\ while __argCounter <= a:0\n
\ let __nextArg = substitute(a:{__argCounter},
\ \"'\", \"' . \\\"'\\\" . '\", \"g\")\n
\ let argumentString = argumentString . \"'\" . __nextArg . \"'\" .
\ ((__argCounter == a:0) ? '' : ', ')\n
\ let __argCounter = __argCounter + 1\n
\ endwhile\n
\ unlet __argCounter\n
\ silent! exec 'unlet __nextArg'\n
\ "
" Creates a argumentList string containing all the arguments separated by
" commas. You can then pass this string to CreateArgString() function below
" to make argumentString which can be used as mentioned above in
" "exec g:makeArgumentString". You can also use the scripts that let you
" handle arrays to manipulate this string (such as remove/insert args)
" before passing it on.
" Uses __argCounter and __argSeparator variables, so make sure you don't have
" variables with the same name. You set the __argSeparator before executing
" this scriptlet to make it use a different separator.
let makeArgumentList = "
\ let __argCounter = 1\n
\ if (! exists('__argSeparator'))\n
\ let __argSeparator = ','\n
\ endif\n
\ let argumentList = ''\n
\ while __argCounter <= a:0\n
\ let argumentList = argumentList . a:{__argCounter}\n
\ if __argCounter != a:0\n
\ let argumentList = argumentList . __argSeparator\n
\ endif\n
\ let __argCounter = __argCounter + 1\n
\ endwhile\n
\ unlet __argCounter\n
\ unlet __argSeparator\n
\ "
" Useful to collect arguments into a soft-array (see multvals on vim.sf.net)
" and then pass them to a function later.
" You should make sure that the separator itself doesn't exist in the
" arguments. You can use the return value same as the way argumentString
" created by the "exec g:makeArgumentString" above is used.
" Usage:
" let args = 'a b c'
" exec "call F(" . CreateArgString(args, ' ') . ")"
function! CreateArgString(argList, sep)
call MvIterCreate(a:argList, a:sep, 'CreateArgString')
let argString = "'"
while MvIterHasNext('CreateArgString')
let nextArg = MvIterNext('CreateArgString')
if a:sep != "'"
let nextArg = substitute(nextArg, "'", "' . \"'\" . '", 'g')
endif
let argString = argString . nextArg . "', '"
endwhile
let argString = strpart(argString, 0, strlen(argString) - 3)
call MvIterDestroy('CreateArgString')
return argString
endfunction
" Useful function to debug passing arguments to functions. See exactly what
" you receive on the other side.
" Ex: :exec 'call DebugShowArgs('. CreateArgString("a 'b' c", ' ') . ')'
function! DebugShowArgs(...)
let i = 0
let argString = ''
while i < a:0
let argString = argString . a:{i + 1} . ', '
let i = i + 1
endwhile
let argString = strpart(argString, 0, strlen(argString) - 2)
call input("Args: " . argString)
endfunction
"
" Return the number of windows open currently.
"
function! NumberOfWindows()
let i = 1
while winbufnr(i) != -1
let i = i+1
endwhile
return i - 1
endfunction
"+++ Cream: We find this broken! Just use:
" let mywinnr = bufwinnr(mybufnr)
" with the buffer's number, followed by
" MoveCursorToWindow(mywinnr)
" rather than using name in the function below.
"
""
"" Find the window number for the buffer passed. If checkUnlisted is non-zero,
"" then it searches for the buffer in the unlisted buffers, to work-around
"" the vim bug that bufnr() doesn't work for unlisted buffers. It also
"" unprotects any extra back-slashes from the bufferName, for the sake of
"" comparision with the existing buffer names.
""
"function! FindWindowForBuffer(bufferName, checkUnlisted)
" let bufno = bufnr('^' . a:bufferName . '$')
" " bufnr() will not find unlisted buffers.
" if bufno == -1 && a:checkUnlisted
" " Iterate over all the open windows for
" " The window name could be having extra backslashes to protect certain
" " chars, so first expand them.
" let bufName = DeEscape(a:bufferName)
" let i = 1
" while winbufnr(i) != -1
" if bufname(winbufnr(i)) == bufName
" return i;
" endif
" let i = i + 1
" endwhile
" endif
" return bufwinnr(bufno)
"endfunction
"+++
" Returns the buffer number of the given fileName if it is already loaded.
" Works around the bug in bufnr().
function! FindBufferForName(fileName)
let i = bufnr('^' . a:fileName . '$')
if i != -1
return i
endif
" If bufnr didn't work, the it probably is a hidden buffer, so check the
" hidden buffers.
let i = 1
while i <= bufnr("$")
if bufexists(i) && ! buflisted(i) && (match(bufname(i), a:fileName) != -1)
break
endif
let i = i + 1
endwhile
if i <= bufnr("$")
return i
else
return -1
endif
endfunction
" Given the window number, moves the cursor to that window.
function! MoveCursorToWindow(winno)
if NumberOfWindows() != 1
execute a:winno . " wincmd w"
endif
endfunction
" Moves the current line such that it is going to be the nth line in the window
" without changing the column position.
function! MoveCurLineToWinLine(n)
normal zt
execute "normal " . a:n . "\<C-Y>"
endfunction
" Turn on some buffer settings that make it suitable to be a scratch buffer.
function! SetupScratchBuffer()
setlocal noswapfile
setlocal nobuflisted
setlocal buftype=nofile
" Just in case, this will make sure we are always hidden.
setlocal bufhidden=delete
endfunction
" Turns off those options that are set by diff to the current window.
" Also removes the 'hor' option from scrollopt (which is a global option).
" Better alternative would be to close the window and reopen the buffer in a
" new window.
function! CleanDiffOptions()
setlocal nodiff
setlocal noscrollbind
setlocal scrollopt-=hor
setlocal wrap
setlocal foldmethod=manual
setlocal foldcolumn=0
endfunction
" This function is an alternative to exists() function, for those odd array
" index names for which the built-in function fails. The var should be
" accessible to this functions, so it should be a global variable.
" if ArrayVarExists("array", id)
" let val = array{id}
" endif
function! ArrayVarExists(varName, index)
let v:errmsg = ""
silent! exec "let test = " . a:varName . "{a:index}"
if !exists("test") || v:errmsg != ""
let v:errmsg = ""
return 0
endif
return 1
endfunction
" Works like the reverse of the builtin escape() function. De-escapes all the
" escaped characters.
function! DeEscape(val)
let val = substitute(a:val, '"', '\\"', 'g')
exec "let val = \"" . val . "\""
return val
endfunction
" Returns 1 if preview window is open or 0 if not.
function! IsPreviewWindowOpen()
let v:errmsg = ""
silent! exec "wincmd P"
if v:errmsg != ""
return 0
else
wincmd p
return 1
endif
endfunction
"
" Saves the heights and widths of the currently open windows for restoring
" later.
"
function! SaveWindowSettings()
call SaveWindowSettings2(s:myScriptId, 1)
endfunction
"
" Restores the heights of the windows from the information that is saved by
" SaveWindowSettings().
"
function! RestoreWindowSettings()
call RestoreWindowSettings2(s:myScriptId)
endfunction
function! ResetWindowSettings()
call ResetWindowSettings2(s:myScriptId)
endfunction
" Same as SaveWindowSettings, but uses the passed in scriptid to create a
" private copy for the calling script. Pass in a unique scriptid to avoid
" conflicting with other callers. If overwrite is zero and if the settings
" are already stored for the passed in sid, it will overwriting previously
" saved settings.
function! SaveWindowSettings2(sid, overwrite)
if ArrayVarExists("s:winSettings", a:sid) && ! a:overwrite
return
endif
let s:winSettings{a:sid} = ""
let s:winSettings{a:sid} = MvAddElement(s:winSettings{a:sid}, ",", NumberOfWindows())
let s:winSettings{a:sid} = MvAddElement(s:winSettings{a:sid}, ",", &lines)
let s:winSettings{a:sid} = MvAddElement(s:winSettings{a:sid}, ",", &columns)
let s:winSettings{a:sid} = MvAddElement(s:winSettings{a:sid}, ",", winnr())
let i = 1
while winbufnr(i) != -1
let s:winSettings{a:sid} = MvAddElement(s:winSettings{a:sid}, ",", winheight(i))
let s:winSettings{a:sid} = MvAddElement(s:winSettings{a:sid}, ",", winwidth(i))
let i = i + 1
endwhile
"let g:savedWindowSettings = s:winSettings{a:sid} " Debug.
endfunction
" Same as RestoreWindowSettings, but uses the passed in scriptid to get the
" settings.
function! RestoreWindowSettings2(sid)
"if ! exists("s:winSettings" . a:sid)
if ! ArrayVarExists("s:winSettings", a:sid)
return
endif
call MvIterCreate(s:winSettings{a:sid}, ",", "savedWindowSettings")
let nWindows = MvIterNext("savedWindowSettings")
if nWindows != NumberOfWindows()
unlet s:winSettings{a:sid}
call MvIterDestroy("savedWindowSettings")
return
endif
let orgLines = MvIterNext("savedWindowSettings")
let orgCols = MvIterNext("savedWindowSettings")
let activeWindow = MvIterNext("savedWindowSettings")
let winNo = 1
while MvIterHasNext("savedWindowSettings")
let height = MvIterNext("savedWindowSettings")
let width = MvIterNext("savedWindowSettings")
call MoveCursorToWindow(winNo)
exec 'resize ' . ((&lines * height + (orgLines / 2)) / orgLines)
exec 'vert resize ' . ((&columns * width + (orgCols / 2)) / orgCols)
let winNo = winNo + 1
endwhile
" Restore the current window.
call MoveCursorToWindow(activeWindow)
call ResetWindowSettings2(a:sid)
"unlet g:savedWindowSettings " Debug.
call MvIterDestroy("savedWindowSettings")
endfunction
function! ResetWindowSettings2(sid)
if ! ArrayVarExists("s:winSettings", a:sid)
unlet s:winSettings{a:sid}
endif
endfunction
" Cleanup file name such that two *cleaned up* file names are easy to be
" compared. This probably works only on windows and unix platforms.
function! CleanupFileName(fileName)
let fileName = a:fileName
" If filename starts with an ~.
" The below case takes care of this also.
"if match(fileName, '^\~') == 0
" let fileName = substitute(fileName, '^\~', escape($HOME, '\'), '')
"endif
" Expand relative paths and paths containing relative components.
if ! PathIsAbsolute(fileName)
let fileName = fnamemodify(fileName, ":p")
endif
" Remove multiple path separators.
if has("win32")
let fileName=substitute(fileName, '\\', '/', "g")
elseif OnMS()
let fileName=substitute(fileName, '\\\{2,}', '\', "g")
endif
let fileName=substitute(fileName, '/\{2,}', '/', "g")
" Remove ending extra path separators.
let fileName=substitute(fileName, '/$', '', "")
let fileName=substitute(fileName, '\$', '', "")
if OnMS()
let fileName=substitute(fileName, '^[A-Z]:', '\L&', "")
" Add drive letter if missing (just in case).
if match(fileName, '^/') == 0
let curDrive = substitute(getcwd(), '^\([a-zA-Z]:\).*$', '\L\1', "")
let fileName = curDrive . fileName
endif
endif
return fileName
endfunction
"echo CleanupFileName('\\a///b/c\')
"echo CleanupFileName('C:\a/b/c\d')
"echo CleanupFileName('a/b/c\d')
"echo CleanupFileName('~/a/b/c\d')
"echo CleanupFileName('~/a/b/../c\d')
function! OnMS()
return has("win32") || has("dos32") || has("win16") || has("dos16") ||
\ has("win95")
endfunction
function! PathIsAbsolute(path)
let absolute=0
if has("unix") || OnMS()
if match(a:path, "^/") == 0
let absolute=1
endif
endif
if (! absolute) && OnMS()
if match(a:path, "^\\") == 0
let absolute=1
endif
endif
if (! absolute) && OnMS()
if match(a:path, "^[A-Za-z]:") == 0
let absolute=1
endif
endif
return absolute
endfunction
function! PathIsFileNameOnly(path)
return (match(a:path, "\\") < 0) && (match(a:path, "/") < 0)
endfunction
" Copy this method into your script and rename it to find the script id of the
" current script.
function! s:SampleScriptIdFunction()
map <SID>xx <SID>xx
let s:sid = maparg("<SID>xx")
unmap <SID>xx
return substitute(s:sid, "xx$", "", "")
endfunction
let s:myScriptId = s:SampleScriptIdFunction()
""
"" --- START save/restore position.
""
" characters that must be escaped for a regular expression
let s:escregexp = '/*^$.~\'
" This method tries to save the position along with the line context if
" possible. This is like the vim builtin marker. Pass in a unique scriptid
" to avoid conflicting with other callers.
function! SaveSoftPosition(scriptid)
let s:startline_{a:scriptid} = getline(".")
call SaveHardPosition(a:scriptid)
endfunction
function! RestoreSoftPosition(scriptid)
0
if search('\m^'.escape(s:startline_{a:scriptid},s:escregexp),'W') <= 0
call RestoreHardPosition(a:scriptid)
else
execute "normal!" s:col_{a:scriptid} . "|"
call MoveCurLineToWinLine(s:winline_{a:scriptid})
endif
endfunction
function! ResetSoftPosition(scriptid)
unlet s:startline_{a:scriptid}
endfunction
" A synonym for SaveSoftPosition.
function! SaveHardPositionWithContext(scriptid)
call SaveSoftPosition(a:scriptid)
endfunction
" A synonym for RestoreSoftPosition.
function! RestoreHardPositionWithContext(scriptid)
call RestoreSoftPosition(a:scriptid)
endfunction
" A synonym for ResetSoftPosition.
function! ResetHardPositionWithContext(scriptid)
call ResetSoftPosition(a:scriptid)
endfunction
" Useful when you want to go to the exact (line, col), but marking will not
" work, or if you simply don't want to disturb the marks. Pass in a unique
" scriptid.
function! SaveHardPosition(scriptid)
let s:col_{a:scriptid} = virtcol(".")
let s:lin_{a:scriptid} = line(".")
let s:winline_{a:scriptid} = winline()
endfunction
function! RestoreHardPosition(scriptid)
execute s:lin_{a:scriptid}
execute "normal!" s:col_{a:scriptid} . "|"
call MoveCurLineToWinLine(s:winline_{a:scriptid})
endfunction
function! ResetHardPosition(scriptid)
unlet s:col_{a:scriptid}
unlet s:lin_{a:scriptid}
unlet s:winline_{a:scriptid}
endfunction
function! IsPositionSet(scriptid)
return exists('s:col_' . a:scriptid)
endfunction
""
"" --- END save/restore position.
""
""
"" --- START: Notify window close --
""
"
" When the window with the title windowTitle is closed, the global function
" functionName is called with the title as an argument, and the entries are
" removed, so if you are still interested, you need to register again.
"
function! AddNotifyWindowClose(windowTitle, functionName)
" The window name could be having extra backslashes to protect certain
" chars, so first expand them.
let bufName = DeEscape(a:windowTitle)
" Make sure there is only one entry per window title.
if exists("s:notifyWindowTitles") && s:notifyWindowTitles != ""
call RemoveNotifyWindowClose(bufName)
endif
if !exists("s:notifyWindowTitles")
" Both separated by :.
let s:notifyWindowTitles = ""
let s:notifyWindowFunctions = ""
endif
let s:notifyWindowTitles = MvAddElement(s:notifyWindowTitles, ";", bufName)
let s:notifyWindowFunctions = MvAddElement(s:notifyWindowFunctions, ";",
\ a:functionName)
let g:notifyWindowTitles = s:notifyWindowTitles " Debug.
let g:notifyWindowFunctions = s:notifyWindowFunctions " Debug.
" Start listening to events.
aug NotifyWindowClose
au!
au WinEnter * :call CheckWindowClose()
aug END
endfunction
function! RemoveNotifyWindowClose(windowTitle)
" The window name could be having extra backslashes to protect certain
" chars, so first expand them.
let bufName = DeEscape(a:windowTitle)
if !exists("s:notifyWindowTitles")
return
endif
if MvContainsElement(s:notifyWindowTitles, ";", bufName)
let index = MvIndexOfElement(s:notifyWindowTitles, ";", bufName)
let s:notifyWindowTitles = MvRemoveElementAt(s:notifyWindowTitles, ";",
\ index)
let s:notifyWindowFunctions = MvRemoveElementAt(s:notifyWindowFunctions,
\ ";", index)
if s:notifyWindowTitles == ""
unlet s:notifyWindowTitles
unlet s:notifyWindowFunctions
unlet g:notifyWindowTitles " Debug.
unlet g:notifyWindowFunctions " Debug.
aug NotifyWindowClose
au!
aug END
endif
endif
endfunction
function! CheckWindowClose()
if !exists("s:notifyWindowTitles") || s:notifyWindowTitles == ""
return
endif
" First make an array with all the existing window titles.
let i = 1
let currentWindows = ""
while winbufnr(i) != -1
let bufname = bufname(winbufnr(i))
if bufname != ""
" For performance reasons.
"let currentWindows = MvAddElement(currentWindows, ";", bufname)
let currentWindows = currentWindows . bufname . ";"
endif
let i = i+1
endwhile
"call input("currentWindows: " . currentWindows)
" Now iterate over all the registered window titles and see which one's are
" closed.
let i = 0 " To track the element index.
" Take a copy and modify these if needed, as we are not supposed to modify
" the main arrays while iterating over them.
let processedElements = ""
call MvIterCreate(s:notifyWindowTitles, ";", "NotifyWindowClose")
while MvIterHasNext("NotifyWindowClose")
let nextWin = MvIterNext("NotifyWindowClose")
if ! MvContainsElement(currentWindows, ";", nextWin)
let funcName = MvElementAt(s:notifyWindowFunctions, ";", i)
let cmd = "call " . funcName . "(\"" . nextWin . "\")"
"call input("cmd: " . cmd)
exec cmd
" Remove these entries as these are already processed.
let processedElements = MvAddElement(processedElements, ";", nextWin)
endif
endwhile
call MvIterDestroy("NotifyWindowClose")
call MvIterCreate(processedElements, ";", "NotifyWindowClose")
while MvIterHasNext("NotifyWindowClose")
let nextWin = MvIterNext("NotifyWindowClose")
call RemoveNotifyWindowClose(nextWin)
endwhile
call MvIterDestroy("NotifyWindowClose")
endfunction
"function! NotifyWindowCloseF(title)
" call input(a:title . " closed")
"endfunction
"
"function! RunNotifyWindowCloseTest()
" split ABC
" split XYZ
" call AddNotifyWindowClose("ABC", "NotifyWindowCloseF")
" call AddNotifyWindowClose("XYZ", "NotifyWindowCloseF")
" call input("notifyWindowTitles: " . s:notifyWindowTitles)
" call input("notifyWindowFunctions: " . s:notifyWindowFunctions)
" au WinEnter
" split b
" call input("Starting the tests, you should see two notifications:")
" quit
" quit
" quit
"endfunction
""
"" --- END: Notify window close --
""
"
" TODO: For large ranges, the cmd can become too big, so make it one cmd per
" line.
" Display the given line(s) from the current file in the command area (i.e.,
" echo), using that line's syntax highlighting (i.e., WYSIWYG).
"
" If no line number is given, display the current line.
"
" Originally,
" From: Gary Holloway <gary@castandcrew.com>
" Date: Wed, 16 Jan 2002 14:31:56 -0800
"
function! ShowLinesWithSyntax() range
" This makes sure we start (subsequent) echo's on the first line in the
" command-line area.
"
echo ''
let cmd = ''
let prev_group = ' x ' " Something that won't match any syntax group.
let show_line = a:firstline
let isMultiLine = ((a:lastline - a:firstline) > 1)
while show_line <= a:lastline
if (show_line - a:firstline) > 1
let cmd = cmd . '\n'
endif
let length = strlen(getline(show_line))
let column = 1
while column <= length
let group = synIDattr(synID(show_line, column, 1), 'name')
if group != prev_group
if cmd != ''
let cmd = cmd . '"|'
endif
let cmd = cmd . 'echohl ' . (group == '' ? 'NONE' : group) . '|echon "'
let prev_group = group
endif
let char = strpart(getline(show_line), column - 1, 1)
if char == '"'
let char = '\"'
endif
let cmd = cmd . char
let column = column + 1
endwhile
let show_line = show_line + 1
endwhile
let cmd = cmd . '"|echohl NONE'
let g:firstone = cmd
exe cmd
endfunction
function! AlignWordWithWordInPreviousLine()
"First go to the first col in the word.
if getline('.')[col('.') - 1] =~ '\s'
normal! w
else
normal! "_yiw
endif
let orgVcol = virtcol('.')
let prevLnum = prevnonblank(line('.') - 1)
if prevLnum == -1
return
endif
let prevLine = getline(prevLnum)
" First get the column to align with.
if prevLine[orgVcol - 1] =~ '\s'
" column starts from 1 where as index starts from 0.
let nonSpaceStrInd = orgVcol " column starts from 1 where as index starts from 0.
while prevLine[nonSpaceStrInd] =~ '\s'
let nonSpaceStrInd = nonSpaceStrInd + 1
endwhile
else
if strlen(prevLine) < orgVcol
let nonSpaceStrInd = strlen(prevLine) - 1
else
let nonSpaceStrInd = orgVcol - 1
endif
while prevLine[nonSpaceStrInd - 1] !~ '\s' && nonSpaceStrInd > 0
let nonSpaceStrInd = nonSpaceStrInd - 1
endwhile
endif
let newVcol = nonSpaceStrInd + 1 " Convert to column number.
if orgVcol > newVcol " We need to reduce the spacing.
let sub = strpart(getline('.'), newVcol - 1, (orgVcol - newVcol))
if sub =~ '^\s\+$'
" Remove the excess space.
exec 'normal! ' . newVcol . '|'
exec 'normal! ' . (orgVcol - newVcol) . 'x'
endif
elseif orgVcol < newVcol " We need to insert spacing.
exec 'normal! ' . orgVcol . '|'
exec 'normal! ' . (newVcol - orgVcol) . 'i '
endif
endfunction
" This function shifts the word in the space without moving the following words.
" Doesn't work for tabs.
function! ShiftWordInSpace(dir)
if a:dir == 1 " forward.
" If currently on <Space>...
if getline(".")[col(".") - 1] == " "
let move1 = 'wf '
else
" If next col is a
"if getline(".")[col(".") + 1]
let move1 = 'f '
endif
let removeCommand = "x"
let pasteCommand = "bi "
let move2 = 'w'
let offset = 0
else " backward.
" If currently on <Space>...
if getline(".")[col(".") - 1] == " "
let move1 = 'w'
else
let move1 = '"_yiW'
endif
let removeCommand = "hx"
let pasteCommand = 'h"_yiwEa '
let move2 = 'b'
let offset = -3
endif
let savedCol = col(".")
exec "normal" move1
let curCol = col(".")
let possible = 0
" Check if there is a space at the end.
if col("$") == (curCol + 1) " Works only for forward case, as expected.
let possible = 1
elseif getline(".")[curCol + offset] == " "
" Remove the space from here.
exec "normal" removeCommand
let possible = 1
endif
" Move back into the word.
"exec "normal" savedCol . "|"
if possible == 1
exec "normal" pasteCommand
exec "normal" move2
else
" Move to the original location.
exec "normal" savedCol . "|"
endif
endfunction
function! CenterWordInSpace()
let line = getline('.')
let orgCol = col('.')
" If currently on <Space>...
if line[orgCol - 1] == " "
let matchExpr = ' *\%'. orgCol . 'c *\w\+ \+'
else
let matchExpr = ' \+\(\w*\%' . orgCol . 'c\w*\) \+'
endif
let matchInd = match(line, matchExpr)
if matchInd == -1
return
endif
let matchStr = matchstr(line, matchExpr)
let nSpaces = strlen(substitute(matchStr, '[^ ]', '', 'g'))
let word = substitute(matchStr, ' ', '', 'g')
let middle = nSpaces / 2
let left = nSpaces - middle
let newStr = ''
while middle > 0
let newStr = newStr . ' '
let middle = middle - 1
endwhile
let newStr = newStr . word
while left > 0
let newStr = newStr . ' '
let left = left - 1
endwhile
let newLine = strpart(line, 0, matchInd)
let newLine = newLine . newStr
let newLine = newLine . strpart (line, matchInd + strlen(matchStr))
call setline(line('.'), newLine)
endfunction
" Reads a normal mode mapping at the command line and executes it with the
" given prefix. Press <BS> to correct and <Esc> to cancel.
function! ExecMap(prefix)
" Temporarily remove the mapping, otherwise it will interfere with the
" mapcheck call below:
let myMap = maparg(a:prefix, 'n')
exec "nunmap" a:prefix
" Generate a line with spaces to clear the previous message.
let i = 1
let clearLine = "\r"
while i < &columns
let clearLine = clearLine . ' '
let i = i + 1
endwhile
let mapCmd = a:prefix
let foundMap = 0
let breakLoop = 0
let curMatch = ''
echon "\rEnter Map: " . mapCmd
while !breakLoop
let char = getchar()
if char !~ '^\d\+$'
if char == "\<BS>"
let mapCmd = strpart(mapCmd, 0, strlen(mapCmd) - 1)
endif
else " It is the ascii code.
let char = nr2char(char)
if char == "\<Esc>"
let breakLoop = 1
"elseif char == "\<CR>"
"let mapCmd = curMatch
"let foundMap = 1
"let breakLoop = 1
else
let mapCmd = mapCmd . char
if maparg(mapCmd, 'n') != ""
let foundMap = 1
let breakLoop = 1
else
let curMatch = mapcheck(mapCmd, 'n')
if curMatch == ""
let mapCmd = strpart(mapCmd, 0, strlen(mapCmd) - 1)
endif
endif
endif
endif
echon clearLine
"echon "\rEnter Map: " . substitute(mapCmd, '.', ' ', 'g') . "\t" . curMatch
echon "\rEnter Map: " . mapCmd
endwhile
if foundMap
exec "normal" mapCmd
endif
exec "nnoremap" a:prefix myMap
endfunction
" If lhs is already mapped, this function makes sure rhs is appended to it
" instead of overwriting it.
" mapMode is used to prefix to "oremap" and used as the map command. E.g., if
" mapMode is 'n', then the function call results in the execution of noremap
" command.
function! MapAppendCascaded(lhs, rhs, mapMode)
" Determine the map mode from the map command.
let mapChar = strpart(a:mapMode, 0, 1)
" Check if this is already mapped.
let oldrhs = maparg(a:lhs, mapChar)
if oldrhs != ""
let self = oldrhs
else
let self = a:lhs
endif
"echomsg a:mapMode . "oremap" . " " . a:lhs . " " . self . a:rhs
exec a:mapMode . "oremap" a:lhs self . a:rhs
endfunction
"" START: Sorting support. {{{
""
"
" Comapare functions.
"
function! s:CmpByLineLengthNname(line1, line2, direction)
let cmp = s:CmpByLength(a:line1, a:line2, a:direction)
if cmp == 0
let cmp = s:CmpByString(a:line1, a:line2, a:direction)
endif
return cmp
endfunction
function! s:CmpByLength(line1, line2, direction)
let len1 = strlen(a:line1)
let len2 = strlen(a:line2)
return a:direction * (len1 - len2)
endfunction
" Compare first by name and then by length.
" Useful for sorting Java imports.
function! s:CmpJavaImports(line1, line2, direction)
" FIXME: Simplify this.
if stridx(a:line1, '.') == -1
let pkg1 = ''
let cls1 = substitute(a:line1, '.* \(^[ ]\+\)', '\1', '')
else
let pkg1 = substitute(a:line1, '^\(.*\.\)[^. ;]\+.*$', '\1', '')
let cls1 = substitute(a:line1, '^.*\.\([^. ;]\+\).*$', '\1', '')
endif
if stridx(a:line2, '.') == -1
let pkg2 = ''
let cls2 = substitute(a:line2, '.* \(^[ ]\+\)', '\1', '')
else
let pkg2 = substitute(a:line2, '^\(.*\.\)[^. ;]\+.*$', '\1', '')
let cls2 = substitute(a:line2, '^.*\.\([^. ;]\+\).*$', '\1', '')
endif
let cmp = s:CmpByString(pkg1, pkg2, a:direction)
if cmp == 0
let cmp = s:CmpByLength(cls1, cls2, a:direction)
endif
return cmp
endfunction
function! s:CmpByString(line1, line2, direction)
if a:line1 < a:line2
return -a:direction
elseif a:line1 > a:line2
return a:direction
else
return 0
endif
endfunction
function! s:CmpByNumber(line1, line2, direction)
let num1 = a:line1 + 0
let num2 = a:line2 + 0
if num1 < num2
return -a:direction
elseif num1 > num2
return a:direction
else
return 0
endif
endfunction
"
" To Sort a range of lines, pass the range to QSort() along with the name of a
" function that will compare two lines.
"
function! QSort(cmp, direction) range
call s:QSortR(a:firstline, a:lastline, a:cmp, a:direction,
\ 's:BufLineAccessor', 's:BufLineSwapper', '')
endfunction
" A more generic sort routine, that will let you provide your own accessor and
" swapper, so that you can extend the sorting to something beyond the default
" buffer lines.
function! QSort2(start, end, cmp, direction, accessor, swapper, context)
call s:QSortR(a:start, a:end, a:cmp, a:direction, a:accessor, a:swapper,
\ a:context)
endfunction
" The default swapper that swaps lines in the current buffer.
function! s:BufLineSwapper(line1, line2, context)
let str2 = getline(a:line1)
call setline(a:line1, getline(a:line2))
call setline(a:line2, str2)
endfunction
" The default accessor that returns lines from the current buffer.
function! s:BufLineAccessor(line, context)
return getline(a:line)
endfunction
"
" Sort lines. QSortR() is called recursively.
"
function! s:QSortR(start, end, cmp, direction, accessor, swapper, context)
if a:end > a:start
let low = a:start
let high = a:end
" Arbitrarily establish partition element at the midpoint of the data.
exec "let midStr = " . a:accessor . "(" . ((a:start + a:end) / 2) .
\ ", a:context)"
" Loop through the data until indices cross.
while low <= high
" Find the first element that is greater than or equal to the partition
" element starting from the left Index.
while low < a:end
exec "let str = " . a:accessor . "(" . low . ", a:context)"
exec "let result = " . a:cmp . "(str, midStr, " . a:direction . ")"
if result < 0
let low = low + 1
else
break
endif
endwhile
" Find an element that is smaller than or equal to the partition element
" starting from the right Index.
while high > a:start
exec "let str = " . a:accessor . "(" . high . ", a:context)"
exec "let result = " . a:cmp . "(str, midStr, " . a:direction . ")"
if result > 0
let high = high - 1
else
break
endif
endwhile
" If the indexes have not crossed, swap.
if low <= high
" Swap lines low and high.
exec "call " . a:swapper . "(" . high . ", " . low . ", a:context)"
let low = low + 1
let high = high - 1
endif
endwhile
" If the right index has not reached the left side of data must now sort
" the left partition.
if a:start < high
call s:QSortR(a:start, high, a:cmp, a:direction, a:accessor, a:swapper,
\ a:context)
endif
" If the left index has not reached the right side of data must now sort
" the right partition.
if low < a:end
call s:QSortR(low, a:end, a:cmp, a:direction, a:accessor, a:swapper,
\ a:context)
endif
endif
endfunction
" Return the line number where given line can be inserted in the current
" buffer. This can also be interpreted as the line in the current buffer
" after which the new line should go.
" Assumes that the lines are already sorted in the given direction using the
" given comparator.
function! BinSearchForInsert(start, end, line, cmp, direction)
return BinSearchForInsert2(a:start, a:end, a:line, a:cmp, a:direction,
\ 's:BufLineAccessor', '')
endfunction
" A more generic implementation which doesn't restrict the search to a buffer.
function! BinSearchForInsert2(start, end, line, cmp, direction, accessor,
\ context)
let start = a:start - 1
let end = a:end
while start < end
let middle = (start + end + 1) / 2
exec "let str = " . a:accessor . "(" . middle . ", a:context)"
exec "let result = " . a:cmp . "(str, a:line, " . a:direction . ")"
if result < 0
let start = middle
else
let end = middle - 1
endif
endwhile
return start
endfunction
""" END: Sorting support. }}}
" Eats character if it matches the given pattern.
"
" Originally,
" From: Benji Fisher <fisherbb@bc.edu>
" Date: Mon, 25 Mar 2002 15:05:14 -0500
"
" Based on Bram's idea of eating a character while type <Space> to expand an
" abbreviation. This solves the problem with abbreviations, where we are
" left with an extra space after the expansion.
" Ex:
" inoreabbr \stdout\ System.out.println("");<Left><Left><Left><C-R>=EatChar('\s')<CR>
function! EatChar(pat)
let c = nr2char(getchar())
return (c =~ a:pat) ? '' : c
endfun
" Convert Roman numerals to decimal. Doesn't detect format errors.
"
" Originally,
" From: "Preben Peppe Guldberg" <c928400@student.dtu.dk>
" Date: Fri, 10 May 2002 14:28:19 +0200
"
" START: Roman2Decimal {{{
let s:I = 1
let s:V = 5
let s:X = 10
let s:L = 50
let s:C = 100
let s:D = 500
let s:M = 1000
fun! s:Char2Num(c)
" A bit of magic on empty strings
if a:c == ""
return 0
endif
exec 'let n = s:' . toupper(a:c)
return n
endfun
fun! Roman2Decimal(str)
if a:str !~? '^[IVXLCDM]\+$'
return a:str
endif
let sum = 0
let i = 0
let n0 = s:Char2Num(a:str[i])
let len = strlen(a:str)
while i < len
let i = i + 1
let n1 = s:Char2Num(a:str[i])
" Magic: n1=0 when i exceeds len
if n1 > n0
let sum = sum - n0
else
let sum = sum + n0
endif
let n0 = n1
endwhile
return sum
endfun
" END: Roman2Decimal }}}
" BEGIN: Relative path {{{
" Find common path component of two filenames, based on the tread, "computing
" relative path".
" Date: Mon, 29 Jul 2002 21:30:56 +0200 (CEST)
function! CommonPath(path1, path2)
let path1 = CleanupFileName(a:path1)
let path2 = CleanupFileName(a:path2)
return CommonString(path1, path2)
endfunction
function! CommonString(str1, str2)
let str1 = CleanupFileName(a:str1)
let str2 = CleanupFileName(a:str2)
if str1 == str2
return str1
endif
let n = 0
while str1[n] == str2[n]
let n = n+1
endwhile
return strpart(str1, 0, n)
endfunction
function! RelPathFromFile(srcFile, tgtFile)
return RelPathFromDir(fnamemodify(a:srcFile, ':r'), a:tgtFile)
endfunction
function! RelPathFromDir(srcDir, tgtFile)
let cleanDir = CleanupFileName(a:srcDir)
let cleanFile = CleanupFileName(a:tgtFile)
let cmnPath = CommonPath(cleanDir, cleanFile)
let shortDir = strpart(cleanDir, strlen(cmnPath))
let shortFile = strpart(cleanFile, strlen(cmnPath))
let relPath = substitute(substitute(shortDir, '[^/]\+$', '', ''),
\ '[^/]\+', '..', 'g')
return relPath . shortFile
endfunction
" END: Relative path }}}
" BEGIN: Persistent settings {{{
if ! exists("g:genutilsNoPersist") || ! g:genutilsNoPersist
" Make sure the '!' option to store global variables that are upper cased are
" stored in viminfo file. Make sure it is the first option, so that it will
" not interfere with the 'n' option ("Todd J. Cosgrove"
" <todd dot cosgrove at softechnics dot com>).
set viminfo^=!
" The pluginName and persistentVar have to be unique and are case insensitive.
" Should be called from VimLeavePre. This simply creates a global variable which
" will be persisted by Vim through viminfo. The variable can be read back in
" the next session by the plugin using GetPersistentVar() function. The
" pluginName is to provide a name space for different plugins, and avoid
" conflicts in using the same persistentVar name.
" This feature uses the '!' option of viminfo, to avoid storing all the
" temporary and other plugin specific global variables getting saved.
function! PutPersistentVar(pluginName, persistentVar, value)
let globalVarName = s:PersistentVarName(a:pluginName, a:persistentVar)
exec 'let ' . globalVarName . " = '" . a:value . "'"
endfunction
" Should be called from VimEnter. Simply reads the gloval variable for the
" value and returns it. Removed the variable from global space before
" returning the value, so should be called only once.
function! GetPersistentVar(pluginName, persistentVar, default)
let globalVarName = s:PersistentVarName(a:pluginName, a:persistentVar)
if (exists(globalVarName))
exec 'let value = ' . globalVarName
exec 'unlet ' . globalVarName
else
let value = a:default
endif
return value
endfunction
function! s:PersistentVarName(pluginName, persistentVar)
return 'g:GU_' . toupper(a:pluginName) . '_' . toupper(a:persistentVar)
endfunction
endif
" END: Persistent settings }}}
" vim6:fdm=marker
|