-
Notifications
You must be signed in to change notification settings - Fork 10
/
symlink.txt
39 lines (28 loc) · 1.36 KB
/
symlink.txt
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
*symlink.txt* Automagically follow symlinks
Author: Aymeric Beaumet <[email protected]> (https://aymericbeaumet.com)
License: MIT
==============================================================================
1. Introduction *symlink-introduction*
{vim-symlink}{1} enables to automatically follow the symlinks in Vim in a
cross-platform way. This means that when you edit a pathname that is a
symlink, vim will instead open the file using the resolved target path.
{1}: https://github.com/aymericbeaumet/vim-symlink
==============================================================================
2. Configuration *symlink-configuration*
You can configure this plugin through the following global variables.
------------------------------------------------------------------------------
*g:symlink_loaded*
If set, turn off the script.
>
let g:symlink_loaded = 1
<
------------------------------------------------------------------------------
*g:symlink_redraw*
By default vim-symlink will make sure to redraw the screen after a symlink
has been followed. This can cause the screen to flicker. To prevent this, set
this option to 0:
>
let g:symlink_redraw = 0
<
==============================================================================
vim:tw=78:ft=help