@@ -1528,7 +1528,7 @@ pub const TYPABLE_COMMAND_LIST: &[TypableCommand] = &[
1528
1528
TypableCommand {
1529
1529
name : "quit!" ,
1530
1530
aliases : & [ "q!" ] ,
1531
- doc : "Close the current view forcefully ( ignoring unsaved changes) ." ,
1531
+ doc : "Force close the current view, ignoring unsaved changes." ,
1532
1532
fun : force_quit,
1533
1533
completer : None ,
1534
1534
} ,
@@ -1549,7 +1549,7 @@ pub const TYPABLE_COMMAND_LIST: &[TypableCommand] = &[
1549
1549
TypableCommand {
1550
1550
name : "buffer-close!" ,
1551
1551
aliases : & [ "bc!" , "bclose!" ] ,
1552
- doc : "Close the current buffer forcefully ( ignoring unsaved changes) ." ,
1552
+ doc : "Close the current buffer forcefully, ignoring unsaved changes." ,
1553
1553
fun : force_buffer_close,
1554
1554
completer : Some ( completers:: buffer) ,
1555
1555
} ,
@@ -1563,35 +1563,35 @@ pub const TYPABLE_COMMAND_LIST: &[TypableCommand] = &[
1563
1563
TypableCommand {
1564
1564
name : "buffer-close-others!" ,
1565
1565
aliases : & [ "bco!" , "bcloseother!" ] ,
1566
- doc : "Close all buffers but the currently focused one." ,
1566
+ doc : "Force close all buffers but the currently focused one." ,
1567
1567
fun : force_buffer_close_others,
1568
1568
completer : None ,
1569
1569
} ,
1570
1570
TypableCommand {
1571
1571
name : "buffer-close-all" ,
1572
1572
aliases : & [ "bca" , "bcloseall" ] ,
1573
- doc : "Close all buffers, without quitting." ,
1573
+ doc : "Close all buffers without quitting." ,
1574
1574
fun : buffer_close_all,
1575
1575
completer : None ,
1576
1576
} ,
1577
1577
TypableCommand {
1578
1578
name : "buffer-close-all!" ,
1579
1579
aliases : & [ "bca!" , "bcloseall!" ] ,
1580
- doc : "Close all buffers forcefully ( ignoring unsaved changes), without quitting." ,
1580
+ doc : "Force close all buffers ignoring unsaved changes without quitting." ,
1581
1581
fun : force_buffer_close_all,
1582
1582
completer : None ,
1583
1583
} ,
1584
1584
TypableCommand {
1585
1585
name : "buffer-next" ,
1586
1586
aliases : & [ "bn" , "bnext" ] ,
1587
- doc : "Go to next buffer." ,
1587
+ doc : "Goto next buffer." ,
1588
1588
fun : buffer_next,
1589
1589
completer : None ,
1590
1590
} ,
1591
1591
TypableCommand {
1592
1592
name : "buffer-previous" ,
1593
1593
aliases : & [ "bp" , "bprev" ] ,
1594
- doc : "Go to previous buffer." ,
1594
+ doc : "Goto previous buffer." ,
1595
1595
fun : buffer_previous,
1596
1596
completer : None ,
1597
1597
} ,
@@ -1605,7 +1605,7 @@ pub const TYPABLE_COMMAND_LIST: &[TypableCommand] = &[
1605
1605
TypableCommand {
1606
1606
name : "write!" ,
1607
1607
aliases : & [ "w!" ] ,
1608
- doc : "Write changes to disk forcefully ( creating necessary subdirectories) . Accepts an optional path (:write some/path.txt)" ,
1608
+ doc : "Force write changes to disk creating necessary subdirectories. Accepts an optional path (:write some/path.txt)" ,
1609
1609
fun : force_write,
1610
1610
completer : Some ( completers:: filename) ,
1611
1611
} ,
@@ -1699,7 +1699,7 @@ pub const TYPABLE_COMMAND_LIST: &[TypableCommand] = &[
1699
1699
TypableCommand {
1700
1700
name : "quit-all!" ,
1701
1701
aliases : & [ "qa!" ] ,
1702
- doc : "Close all views forcefully ( ignoring unsaved changes) ." ,
1702
+ doc : "Force close all views ignoring unsaved changes." ,
1703
1703
fun : force_quit_all,
1704
1704
completer : None ,
1705
1705
} ,
@@ -1713,7 +1713,7 @@ pub const TYPABLE_COMMAND_LIST: &[TypableCommand] = &[
1713
1713
TypableCommand {
1714
1714
name : "cquit!" ,
1715
1715
aliases : & [ "cq!" ] ,
1716
- doc : "Quit with exit code (default 1) forcefully ( ignoring unsaved changes) . Accepts an optional integer exit code (:cq! 2)." ,
1716
+ doc : "Force quit with exit code (default 1) ignoring unsaved changes. Accepts an optional integer exit code (:cq! 2)." ,
1717
1717
fun : force_cquit,
1718
1718
completer : None ,
1719
1719
} ,
@@ -1818,7 +1818,7 @@ pub const TYPABLE_COMMAND_LIST: &[TypableCommand] = &[
1818
1818
TypableCommand {
1819
1819
name : "encoding" ,
1820
1820
aliases : & [ ] ,
1821
- doc : "Set encoding based on `https://encoding.spec.whatwg.org`" ,
1821
+ doc : "Set encoding. Based on `https://encoding.spec.whatwg.org`. " ,
1822
1822
fun : set_encoding,
1823
1823
completer : None ,
1824
1824
} ,
@@ -1895,7 +1895,7 @@ pub const TYPABLE_COMMAND_LIST: &[TypableCommand] = &[
1895
1895
TypableCommand {
1896
1896
name : "goto" ,
1897
1897
aliases : & [ "g" ] ,
1898
- doc : "Go to line number." ,
1898
+ doc : "Goto line number." ,
1899
1899
fun : goto_line_number,
1900
1900
completer : None ,
1901
1901
} ,
@@ -1951,14 +1951,14 @@ pub const TYPABLE_COMMAND_LIST: &[TypableCommand] = &[
1951
1951
TypableCommand {
1952
1952
name : "config-reload" ,
1953
1953
aliases : & [ ] ,
1954
- doc : "Refreshes helix's config." ,
1954
+ doc : "Refresh user config." ,
1955
1955
fun : refresh_config,
1956
1956
completer : None ,
1957
1957
} ,
1958
1958
TypableCommand {
1959
1959
name : "config-open" ,
1960
1960
aliases : & [ ] ,
1961
- doc : "Open the helix config.toml file." ,
1961
+ doc : "Open the user config.toml file." ,
1962
1962
fun : open_config,
1963
1963
completer : None ,
1964
1964
} ,
0 commit comments