-
Notifications
You must be signed in to change notification settings - Fork 0
/
openwrt.ini
executable file
·47 lines (43 loc) · 1.66 KB
/
openwrt.ini
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
# $(VIM_FILEPATH) # File name of current buffer with full path.
# $(VIM_FILENAME) # File name of current buffer without path.
# $(VIM_FILEDIR) # Full path of current buffer without the file name.
# $(VIM_FILEEXT) # File extension of current buffer.
# $(VIM_FILETYPE) # File type (value of &ft in vim)
# $(VIM_FILENOEXT) # File name of current buffer without path and extension.
# $(VIM_PATHNOEXT) # Current file name with full path but without extension.
# $(VIM_CWD) # Current directory (which :pwd returns).
# $(VIM_RELDIR) # File path relativize to current directory.
# $(VIM_RELNAME) # File name relativize to current directory.
# $(VIM_ROOT) # Project root directory.
# $(VIM_CWORD) # Word under cursor.
# $(VIM_CFILE) # File name under cursor.
# $(VIM_CLINE) # Cursor line number in current buffer
# $(VIM_GUI) # has('gui_runnin')?
# $(VIM_VERSION) # Value of v:version.
# $(VIM_COLUMNS) # Current screen width.
# $(VIM_LINES) # Current screen height.
# $(VIM_SVRNAME) # Value of v:servername.
# $(VIM_PRONAME) # Name of current project root directory
# $(VIM_DIRNAME) # Name of current directory
# $(VIM_INIFILE) # Full path name of current ini (.tasks) file.
# $(VIM_INIHOME) # Where the ini file locates.
[build-multi]
command=make V=s -j$(nproc)
cwd="$(VIM_ROOT)"
output=terminal
save=2
[build-single]
command=make V=s -j1
cwd="$(VIM_ROOT)"
output=terminal
save=2
[update-feeds]
command=./scripts/feeds update -a && ./scripts/feeds install -a
cwd="$(VIM_ROOT)"
output=terminal
save=2
[install-packages]
command=make download V=s -j$(nproc)
cwd="$(VIM_ROOT)"
output=terminal
save=2