| File ChangeLog changed (mode: 100644) (index f5e938642..460525ecf) |
| 1 |
|
0.6.2 to current |
|
|
1 |
|
0.6.2 to 0.6.3 |
| 2 |
2 |
|
|
| 3 |
3 |
Added another format for filetype (FUSE_MOUNT2). |
Added another format for filetype (FUSE_MOUNT2). |
| 4 |
4 |
|
|
| |
| 217 |
217 |
|
|
| 218 |
218 |
Fixed opening files containing spaces in their names using Vim plugin. |
Fixed opening files containing spaces in their names using Vim plugin. |
| 219 |
219 |
|
|
|
220 |
|
Fixed command line size when initial message doesn't fit in one line. |
|
221 |
|
|
| 220 |
222 |
0.6.1 to 0.6.2 |
0.6.1 to 0.6.2 |
| 221 |
223 |
|
|
| 222 |
224 |
Added map menus (run :cmap, :vmap, :nmap commands without arguments). |
Added map menus (run :cmap, :vmap, :nmap commands without arguments). |
| File src/commands.c changed (mode: 100644) (index dbb783d05..c7c2c764c) |
| ... |
... |
const struct rescmd_info reserved_cmds[] = { |
| 136 |
136 |
{ .name = "w", .alias = 1, .id = COM_WRITE }, |
{ .name = "w", .alias = 1, .id = COM_WRITE }, |
| 137 |
137 |
{ .name = "wq", .alias = 0, .id = COM_WQ }, |
{ .name = "wq", .alias = 0, .id = COM_WQ }, |
| 138 |
138 |
{ .name = "write", .alias = 0, .id = COM_WRITE }, |
{ .name = "write", .alias = 0, .id = COM_WRITE }, |
| 139 |
|
{ .name = "x", .alias = 0, .id = COM_X }, |
|
|
139 |
|
{ .name = "x", .alias = 0, .id = COM_XIT }, |
|
140 |
|
{ .name = "xit", .alias = 0, .id = COM_XIT }, |
| 140 |
141 |
{ .name = "y", .alias = 1, .id = COM_YANK }, |
{ .name = "y", .alias = 1, .id = COM_YANK }, |
| 141 |
142 |
{ .name = "yank", .alias = 0, .id = COM_YANK }, |
{ .name = "yank", .alias = 0, .id = COM_YANK }, |
| 142 |
143 |
}; |
}; |
| |
| ... |
... |
execute_builtin_command(FileView *view, cmd_params *cmd) |
| 1882 |
1883 |
status_bar_message(view->curr_dir); |
status_bar_message(view->curr_dir); |
| 1883 |
1884 |
save_msg = 1; |
save_msg = 1; |
| 1884 |
1885 |
break; |
break; |
| 1885 |
|
case COM_X: |
|
|
1886 |
|
case COM_XIT: |
| 1886 |
1887 |
case COM_QUIT: |
case COM_QUIT: |
| 1887 |
1888 |
if(cmd->args && cmd->args[0] == '!') |
if(cmd->args && cmd->args[0] == '!') |
| 1888 |
1889 |
curr_stats.setting_change = 0; |
curr_stats.setting_change = 0; |
| File src/vifm.1 changed (mode: 100644) (index 387228b27..14fe163a0) |
| 1 |
|
.TH vifm 1 "Jule 19, 2011" "" "Vifm" |
|
|
1 |
|
.TH vifm 1 "Jule 20, 2011" "" "Vifm" |
| 2 |
2 |
.\" --------------------------------------------------------------------------- |
.\" --------------------------------------------------------------------------- |
| 3 |
3 |
.SH NAME |
.SH NAME |
| 4 |
4 |
.\" --------------------------------------------------------------------------- |
.\" --------------------------------------------------------------------------- |
| |
| ... |
... |
write config file (add ! to force write even if settings weren't changed). |
| 591 |
591 |
.BI :wq |
.BI :wq |
| 592 |
592 |
exit vifm after writing config. |
exit vifm after writing config. |
| 593 |
593 |
.TP |
.TP |
| 594 |
|
.BI ":x" |
|
|
594 |
|
.BI ":x[it]" |
| 595 |
595 |
will exit Vifm (add ! if you don't want to save changes). |
will exit Vifm (add ! if you don't want to save changes). |
| 596 |
596 |
|
|
| 597 |
597 |
.TP |
.TP |
| File src/vifm.txt changed (mode: 100644) (index 898483cbc..aef3e6b62) |
| ... |
... |
Add ' &' in the end of command if you want to start program in background. |
| 351 |
351 |
:w[rite] - will write config (add ! to force write even if settings weren't |
:w[rite] - will write config (add ! to force write even if settings weren't |
| 352 |
352 |
changed). |
changed). |
| 353 |
353 |
:wq - will exit vifm after writing config. |
:wq - will exit vifm after writing config. |
| 354 |
|
:x - exit vifm (add ! if you don't want to save changes). |
|
|
354 |
|
:x[it] - exit vifm (add ! if you don't want to save changes). |
| 355 |
355 |
|
|
| 356 |
356 |
:map lhs rhs - map lhs key sequence to rhs in normal and visual modes. |
:map lhs rhs - map lhs key sequence to rhs in normal and visual modes. |
| 357 |
357 |
:map! lhs rhs - map lhs key sequence to rhs in command line mode. |
:map! lhs rhs - map lhs key sequence to rhs in command line mode. |
| |
| ... |
... |
The following command names are reserved and cannot be used for user commands. |
| 709 |
709 |
wq - will exit vifm after writing config. |
wq - will exit vifm after writing config. |
| 710 |
710 |
write - write config (add ! to force write even if settings weren't changed). |
write - write config (add ! to force write even if settings weren't changed). |
| 711 |
711 |
x - exit vifm. |
x - exit vifm. |
|
712 |
|
xit - exit vifm. |
| 712 |
713 |
y - yank file. |
y - yank file. |
| 713 |
714 |
yank - yank file. |
yank - yank file. |
| 714 |
715 |
|
|