Skip to content

Commit

Permalink
FvwmPrompt: don't lowercase all commands
Browse files Browse the repository at this point in the history
Certain commands sent to Fvwm3 need the case to be intact as commands
such as modules look for files on disk (i.e. FvwmButtons vs
fvwmbuttons).

Leave the case alone.
  • Loading branch information
ThomasAdam committed Aug 29, 2020
1 parent 8693eaa commit 0a459cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/FvwmPrompt/FvwmPrompt.go
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ func main() {

shell := ishell.New()
shell.ShowPrompt(false)
shell.IgnoreCase(true)
shell.IgnoreCase(false)

shell.DeleteCmd("help")
shell.DeleteCmd("clear")
Expand Down

0 comments on commit 0a459cf

Please sign in to comment.