Sublime text: Merge multiple adjacent white spaces into one

前端 未结 2 463
我在风中等你
我在风中等你 2021-01-21 09:38

How to do this in sublime text

\"aaa     bbb ccc    ffffdffffdd   \"

should get converted to

\"aaa bbb ccc ffffdffffdd \"
2条回答
  •  遥遥无期
    2021-01-21 10:12

    Create a snippet:

    
        
    
    

    Then create a keybinding to call that snippet in your Preferences -> KeyBindings - User file:

    { "keys": ["ctrl+shift+z"], "command": "insert_snippet", "args": { "name": "Packages/User/Snippets/test_snippets/regex_whitespace.sublime-snippet" } },
    

    Then, select text on a line, or multiple lines, and use the keymap.

    enter image description here

    enter image description here

    enter image description here

提交回复
热议问题