Wie setze ich eine Verknüpfung für den Copy file path
erhabenen Text 3? Ich habe es versucht:
[
{ "keys": ["super+i"], "command": "copy_file_path" }
]
Aber scheinbar Befehl copy_file_path
nicht gültig.
Wie setze ich eine Verknüpfung für den Copy file path
erhabenen Text 3? Ich habe es versucht:
[
{ "keys": ["super+i"], "command": "copy_file_path" }
]
Aber scheinbar Befehl copy_file_path
nicht gültig.
Antworten:
Alles , was Sie tun müssen , ist der Wandel "copy_file_path"
zu "copy_path"
.
Um dies herauszufinden Ctrl`, drücke ich , um die Konsole zu öffnen, und renne dann los
sublime.log_commands(True)
Damit alle Aktionen in der Konsole protokolliert werden. Ich habe dann mit der rechten Maustaste geklickt und ausgewählt Copy File Path
, und
command: copy_path
zeigte sich. Ich habe die Tastenkombination zugewiesen, ausgeführt und es hat funktioniert. Zum Schluss renne ich los
sublime.log_commands(False)
Damit die Konsole nicht mit unnötigen Informationen verstopft wird, drücken Sie Ctrl`erneut, um die Konsole zu schließen.
sublime.log_commands
? Wahrscheinlich die API von sublime?