reformat builtins and properly read tags
parent
ddcb9b4921
commit
954e246140
@ -1,4 +1,7 @@
|
||||
clear
|
||||
-----
|
||||
=====
|
||||
|
||||
Tags: system
|
||||
:dfhack-keybind:`clear`
|
||||
|
||||
Clear the terminal screen. This command is an alias for `cls`.
|
||||
|
@ -1,5 +1,8 @@
|
||||
cls
|
||||
---
|
||||
===
|
||||
|
||||
Clear the terminal screen. Can also be invoked as ``clear``. Note that this
|
||||
Tags: system
|
||||
:dfhack-keybind:`cls`
|
||||
|
||||
Clear the terminal screen. Can also be invoked as `clear`. Note that this
|
||||
command does not delete command history. It just clears the text on the screen.
|
||||
|
@ -1,4 +1,7 @@
|
||||
die
|
||||
---
|
||||
===
|
||||
|
||||
Tags: system
|
||||
:dfhack-keybind:`die`
|
||||
|
||||
Instantly exits DF without saving.
|
||||
|
@ -1,4 +1,7 @@
|
||||
dir
|
||||
---
|
||||
===
|
||||
|
||||
Tags: system
|
||||
:dfhack-keybind:`dir`
|
||||
|
||||
List available DFHack commands. This is an alias of the `ls` command.
|
||||
|
@ -1,20 +1,12 @@
|
||||
disable
|
||||
-------
|
||||
=======
|
||||
|
||||
Deactivate a DFHack tool that has some persistent effect. Many plugins and
|
||||
scripts can be in a distinct enabled or disabled state. Some of them activate
|
||||
and deactivate automatically depending on the contents of the world raws. Others
|
||||
store their state in world data. However a number of them have to be enabled
|
||||
globally, and the init file is the right place to do it.
|
||||
Tags: system
|
||||
:dfhack-keybind:`disable`
|
||||
|
||||
Most such plugins or scripts support the built-in ``enable`` and ``disable``
|
||||
commands. Calling them at any time without arguments prints a list of enabled
|
||||
and disabled plugins, and shows whether that can be changed through the same
|
||||
commands. Passing plugin names to these commands will enable or disable the
|
||||
specified plugins. For example, to disable the `manipulator` plugin::
|
||||
Deactivate a DFHack tool that has some persistent effect. See the `enable`
|
||||
command for more info.
|
||||
|
||||
disable manipulator
|
||||
Usage::
|
||||
|
||||
It is also possible to enable or disable multiple plugins at once::
|
||||
|
||||
disable manipulator search
|
||||
disable <plugin> [<plugin> ...]
|
||||
|
@ -1,5 +1,12 @@
|
||||
fpause
|
||||
------
|
||||
======
|
||||
|
||||
Tags: system
|
||||
:dfhack-keybind:`fpause`
|
||||
|
||||
Forces DF to pause. This is useful when your FPS drops below 1 and you lose
|
||||
control of the game.
|
||||
|
||||
Usage::
|
||||
|
||||
fpause
|
||||
|
@ -1,8 +1,15 @@
|
||||
hide
|
||||
----
|
||||
====
|
||||
|
||||
Tags: system
|
||||
:dfhack-keybind:`hide`
|
||||
|
||||
Hides the DFHack terminal window. You can show it again with the `show`
|
||||
command, though you'll need to use it from a `keybinding` set beforehand or the
|
||||
in-game `command-prompt`.
|
||||
|
||||
Only available on Windows.
|
||||
|
||||
Usage::
|
||||
|
||||
hide
|
||||
|
@ -1,6 +1,15 @@
|
||||
kill-lua
|
||||
--------
|
||||
========
|
||||
|
||||
Tags: system
|
||||
:dfhack-keybind:`kill-lua`
|
||||
|
||||
Gracefully stops any currently-running Lua scripts. Use this command to stop
|
||||
a misbehaving script that appears to be stuck. Use ``kill-lua force`` if just
|
||||
``kill-lua`` doesn't work.
|
||||
a misbehaving script that appears to be stuck.
|
||||
|
||||
Usage::
|
||||
|
||||
kill-lua
|
||||
kill-lua force
|
||||
|
||||
Use ``kill-lua force`` if just ``kill-lua`` doesn't seem to work.
|
||||
|
@ -0,0 +1,7 @@
|
||||
man
|
||||
===
|
||||
|
||||
Tags: system
|
||||
:dfhack-keybind:`man`
|
||||
|
||||
An alias for the `help` command.
|
Loading…
Reference in New Issue