reformat builtins and properly read tags
parent
ddcb9b4921
commit
954e246140
@ -1,4 +1,7 @@
|
|||||||
clear
|
clear
|
||||||
-----
|
=====
|
||||||
|
|
||||||
|
Tags: system
|
||||||
|
:dfhack-keybind:`clear`
|
||||||
|
|
||||||
Clear the terminal screen. This command is an alias for `cls`.
|
Clear the terminal screen. This command is an alias for `cls`.
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
cls
|
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.
|
command does not delete command history. It just clears the text on the screen.
|
||||||
|
@ -1,4 +1,7 @@
|
|||||||
die
|
die
|
||||||
---
|
===
|
||||||
|
|
||||||
|
Tags: system
|
||||||
|
:dfhack-keybind:`die`
|
||||||
|
|
||||||
Instantly exits DF without saving.
|
Instantly exits DF without saving.
|
||||||
|
@ -1,4 +1,7 @@
|
|||||||
dir
|
dir
|
||||||
---
|
===
|
||||||
|
|
||||||
|
Tags: system
|
||||||
|
:dfhack-keybind:`dir`
|
||||||
|
|
||||||
List available DFHack commands. This is an alias of the `ls` command.
|
List available DFHack commands. This is an alias of the `ls` command.
|
||||||
|
@ -1,20 +1,12 @@
|
|||||||
disable
|
disable
|
||||||
-------
|
=======
|
||||||
|
|
||||||
Deactivate a DFHack tool that has some persistent effect. Many plugins and
|
Tags: system
|
||||||
scripts can be in a distinct enabled or disabled state. Some of them activate
|
:dfhack-keybind:`disable`
|
||||||
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.
|
|
||||||
|
|
||||||
Most such plugins or scripts support the built-in ``enable`` and ``disable``
|
Deactivate a DFHack tool that has some persistent effect. See the `enable`
|
||||||
commands. Calling them at any time without arguments prints a list of enabled
|
command for more info.
|
||||||
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::
|
|
||||||
|
|
||||||
disable manipulator
|
Usage::
|
||||||
|
|
||||||
It is also possible to enable or disable multiple plugins at once::
|
disable <plugin> [<plugin> ...]
|
||||||
|
|
||||||
disable manipulator search
|
|
||||||
|
@ -1,5 +1,12 @@
|
|||||||
fpause
|
fpause
|
||||||
------
|
======
|
||||||
|
|
||||||
|
Tags: system
|
||||||
|
:dfhack-keybind:`fpause`
|
||||||
|
|
||||||
Forces DF to pause. This is useful when your FPS drops below 1 and you lose
|
Forces DF to pause. This is useful when your FPS drops below 1 and you lose
|
||||||
control of the game.
|
control of the game.
|
||||||
|
|
||||||
|
Usage::
|
||||||
|
|
||||||
|
fpause
|
||||||
|
@ -1,8 +1,15 @@
|
|||||||
hide
|
hide
|
||||||
----
|
====
|
||||||
|
|
||||||
|
Tags: system
|
||||||
|
:dfhack-keybind:`hide`
|
||||||
|
|
||||||
Hides the DFHack terminal window. You can show it again with the `show`
|
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
|
command, though you'll need to use it from a `keybinding` set beforehand or the
|
||||||
in-game `command-prompt`.
|
in-game `command-prompt`.
|
||||||
|
|
||||||
Only available on Windows.
|
Only available on Windows.
|
||||||
|
|
||||||
|
Usage::
|
||||||
|
|
||||||
|
hide
|
||||||
|
@ -1,6 +1,15 @@
|
|||||||
kill-lua
|
kill-lua
|
||||||
--------
|
========
|
||||||
|
|
||||||
|
Tags: system
|
||||||
|
:dfhack-keybind:`kill-lua`
|
||||||
|
|
||||||
Gracefully stops any currently-running Lua scripts. Use this command to stop
|
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
|
a misbehaving script that appears to be stuck.
|
||||||
``kill-lua`` doesn't work.
|
|
||||||
|
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