File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ from the source code of the miscellaneous scripts using the Python module
38
38
<!-- Start of generated documentation -->
39
39
40
40
The documentation of the 80 functions below was extracted from
41
- 15 Vim scripts on June 26 , 2013 at 10:55 .
41
+ 15 Vim scripts on July 20 , 2013 at 10:41 .
42
42
43
43
### Handling of special buffers
44
44
Original file line number Diff line number Diff line change 1
1
" The version of my miscellaneous scripts.
2
2
"
3
3
" Author: Peter Odding <[email protected] >
4
- " Last Change: June 26 , 2013
4
+ " Last Change: July 20 , 2013
5
5
" URL: http://peterodding.com/code/vim/misc/
6
6
7
- let g: xolox #misc#version = ' 1.8.4 '
7
+ let g: xolox #misc#version = ' 1.8.5 '
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ function! xolox#misc#os#is_mac() " {{{1
16
16
if has (' mac' ) || has (' macunix' ) || has (' gui_mac' )
17
17
" If Vim's feature list indicates we are on Mac OS X, we have our answer :-).
18
18
let s: is_mac = 1
19
- else
19
+ elseif ! xolox#misc#os#is_win ()
20
20
" Otherwise we check the output of `uname' to avoid false negatives.
21
21
let result = xolox#misc#os#exec ({' command' : ' uname' , ' check' : 0 })
22
22
if result[' exit_code' ] == 0 && get (result[' stdout' ], 0 , ' ' ) == ' Darwin'
Original file line number Diff line number Diff line change @@ -151,7 +151,7 @@ from the source code of the miscellaneous scripts using the Python module
151
151
'vimdoctool.py' included in vim-tools [5].
152
152
153
153
The documentation of the 80 functions below was extracted from 15 Vim scripts
154
- on June 26 , 2013 at 10:55 .
154
+ on July 20 , 2013 at 10:41 .
155
155
156
156
-------------------------------------------------------------------------------
157
157
*misc-handling-of-special-buffers*
You can’t perform that action at this time.
0 commit comments