We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e33209 commit b2f7d12Copy full SHA for b2f7d12
app/src/core/service/controlService/shortcutKeysEngine/shortcutKeysRegister.tsx
@@ -849,7 +849,7 @@ export class KeyBindsRegistrar {
849
node.isSelected = false;
850
});
851
setTimeout(() => {
852
- Dialog.input("请输入分割符").then((userInput) => {
+ Dialog.input("请输入分割符(n代表一个换行符,t代表一个制表符)").then((userInput) => {
853
if (userInput === undefined || userInput === "") return;
854
userInput = userInput.replaceAll("n", "\n");
855
userInput = userInput.replaceAll("t", "\t");
0 commit comments