Sublime Forum

Terminus plugin seetings

#1

Hello,
I’ve installed terminus plugin an i configure it as cmder as follows :slight_smile:
{
“default_config”: {
“linux”: null, // login shell
“osx”: null, // login shell
“windows”: “Cmder”
},
“shell_configs”: [
{
“name”: “Cmder”,
“cmd”: [“cmd.exe”, “/k”, “%CMDER_ROOT%\vendor\init.bat”],
“env”: {},
“enable”: true,
“default”: true,
“platforms”: [“windows”]
},
]
}
It works, but in my cmder terminal, i use to clear with “ctrl+l” as default.
It seems not working in terminus.
How can i do to active the “ctrl+l” for clearing terminus terminal ?

Best regards

0 Likes

#2

My terminus settings is:

{
	"default_config": {
        "linux": null,    // login shell
        "osx": null,      // login shell
        "windows": "Cmder"
    },
   "shell_configs": [
	   	{
	        "name": "Cmder",
	    	"cmd": ["C:\\WINDOWS\\system32\\cmd.exe", "/k", "C:\\dev\\cmder\\textedit.bat"],
			"env": {},
			"enable": true,
			"platforms": ["windows"]
		}
	]
}

In the Cmder folder, have a file named textedit.bat with the following content:

@echo off
SET CMDER_ROOT=C:\dev\cmder
"%CMDER_ROOT%\vendor\init.bat"

PS: Cmder should be installed in CMDER_ROOT as suggested by the batch file.

0 Likes