Блог пользователя yeeeet

Автор yeeeet, история, 5 лет назад, По-английски

How do you provide input with comments at the top and run on c++14 with Sublime Text ?

  • Проголосовать: нравится
  • +3
  • Проголосовать: не нравится

»
5 лет назад, # |
  Проголосовать: нравится +11 Проголосовать: не нравится

It's a package called SublimeInput.

You can specify your own key bindings for the package, using which it would compile your source code, and run it with the input from the source code itself, and give the output in sublime itself.

You can specify the compile and run shell commands for any language, along with how your input placeholder at the top looks like.

  • »
    »
    5 лет назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    How do you specify the compile and run shell commands

    • »
      »
      »
      5 лет назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится

      You can modify the SublimeInput.sublime-settings file.

      • »
        »
        »
        »
        5 лет назад, # ^ |
        Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

        So like change it into { "build_schemas" : { "cpp" : { "shell_cmd" : "g++ -std=c++14 "$$${file}" -o "$$${file_path}/$$${file_base_name}" && "$$${file_path}/${file_base_name}"", "input_start" : "/*input", "input_end" : "*/" } } }