Установил плагин Scss для саблайм, но при написании класса с двумя дефисами, он подсвечивается крассным. Как исправить?Read more
Установил плагин Scss для саблайм, но при написании класса с двумя дефисами, он подсвечивается крассным. Как исправить?Read more
It’s my first plugin and it’s super simple but there could easily be somethings worth knowing from this e.g. python coding practices, potential bugs import sublime import sublime_plugin class EscapeAndPasteCommand(sublime_plugin.TextCommand): def run(self, edit, **kwargs): # Get the clipboard text originalText = textToPaste = sublime.get_clipboard() # Loop through the arguments making changes where possible for replacementRead more
I’m trying to create a build system for OCaml in sublime text 3 on Windows 8.1. I installed OCaml via opam and typed the following into the OCaml.sublime-build file: { “cmd”: [“C:/OCaml64/home/LENOVO/.opam/4.05.0+mingw64c/bin/ocaml.exe”, “$ file”], “file_regex”: “^[ ]*File \”(…*?)\”, line ([0-9]*)”, “selector”: “source.ml” } I’m trying the build system out with a text.ml that contains print_endlineRead more
основываясь на этой ветке link стало понятно как конвертировать 4 пробела в табы но как конвертировать 4 пробела в 2?Read more