ข้อความประเสริฐ 3 แปลงช่องว่างเป็นแท็บ
ฉันรู้ว่ามีโพสต์มากมายเกี่ยวกับเรื่องนี้ แต่ฉันไม่สามารถใช้งานได้ ฉันใช้แท็บเพื่อเข้ารหัส มีวิธีการแปลงช่องว่างเป็นแท็บเสมอ? เช่นเปิดและบันทึกไฟล์หรือไม่ ใครมีความคิดบ้าง // แก้ไข: ความปรารถนาของฉันคือการทำสิ่งนี้โดยอัตโนมัติ ! -> เปิดบันทึกหรือเดินทาง ไม่มีใครรู้วิธีการทำ? ฉันลองสิ่งนี้ : import sublime, sublime_plugin, os class ExpandTabsOnSave(sublime_plugin.EventListener): # Run ST's 'expand_tabs' command when saving a file def on_pre_save(self, view): if view.settings().get('expand_tabs_on_save') == 1: view.window().run_command('expand_tabs') และนี่คือการตั้งค่าผู้ใช้ของฉัน: { "auto_complete_selector": "source - comment, meta.tag - punctuation.definition.tag.begin", "auto_indent": true, "detect_indentation": …