You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Added welcome message, and improved `i(nfo)` and `help` commands.
5
+
- Manifest migration for v10
6
+
- Full suggestions with up/down arrow keys
7
+
- Renamed Application class from Widget -> Commander to make the foundry rendering console log less generic-looking (No more "Foundry VTT | Rendering Widget" without any clear finger pointing at Commander)
8
+
- Fixed 'Open Compendium (comp)' command to not create a new Compendium instance and use the exiting app con the compendium (This caused that the open windows would not reflect changes on the underlying compendium even when they were happening in the background).
9
+
10
+
3
11
## v0.1.0 (2022-02-19)
4
12
- Initial Release
5
13
- Complete functionality, but pending some improvements before calling it v1.0.0
Copy file name to clipboardExpand all lines: README.md
+7-6Lines changed: 7 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,13 +13,14 @@ This module provides the command-line input and the API for registering new comm
13
13
14
14
## Bundled Commands
15
15
16
-
* Command info (i)
17
-
*Log commands the current use can use (cmd:allowed)
16
+
* Command info (info $command)
17
+
*Show commands the current user can use (help)
18
18
* Open tab (go $tab)
19
19
* Open compendium (comp $title)
20
20
* Run macro by name (m $name)
21
-
* Open character sheet by Player name (sheet:player $name)
22
-
* Open character sheet by Actor name (sheet:name $name)
21
+
* Open character sheet by Player name (player $name)
22
+
* Open character sheet by Actor name (pc $name)
23
+
* Open non-player character sheet by name (npc $name)
23
24
* Apply active effect to selected tokens -just visual- (tae $effect)
24
25
25
26
It is not the intention of this module to provide commands specific to particular systems, but mostly the tooling and more generic commands applicable to anyone regardless of game system. If you have such a command that you want to share, [don't be afraid to open a pull request](https://github.com/ccjmk/commander/pulls)!
@@ -28,9 +29,9 @@ It is not the intention of this module to provide commands specific to particula
28
29
29
30
## Executing Commands
30
31
31
-
You can open the Commander widget by pressing the corresponding keybinding, configurable in-game, with the default been Ctrl+Backtick. *(the ` right next to the 1 in english keyboards)*
32
+
You can open the Commander widget by pressing (by default) Alt+Backtick*(the \` right next to the 1 in english keyboards)*. Shortcut is configurable ingame using the default keybinding menu.
32
33
33
-
Then you can start typing! Command suggestions will pop up as you type, you can auto-accept the selected suggestion with `Tab`/`Enter`, or select other suggestions using `Up` or `Down`. An `Enter` when no suggestion is selected sends the Command for execution.
34
+
Then you can start typing! Command suggestions will pop up as you type, you can auto-accept the selected suggestion with `Tab`/`Enter`, or select other suggestions using `Up` or `Down`. An `Enter` when no suggestion is selected sends the Command for execution, else it auto-fills that suggestion.
0 commit comments