Kde

在 Kate 中編輯時將目前日期插入文本文件

  • May 11, 2022

我想將目前日期插入到打開的 Kate 文本文件中,同時使用快捷鍵組合對其進行編輯。

我為 Atom 看到了幾個這樣的選項,但我沒有為 Kate 找到任何東西。

如果您想在全球範圍內擁有該功能,您可以使用 xdotool 。

在我的設置中,我有一個 shell 腳本

#!/bin/sh
xdotool type $(date +%Y-%m-%d_%H:%M)

並且我綁定到一個全域熱鍵。

為此,我正在使用 AutoKey App,設置 ++d 來執行此腳本

output = system.exec_command("date +%Y-%m-%d")
keyboard.send_keys(output)

引用自:https://unix.stackexchange.com/questions/451395