oo-ide 0.0.3

∞ is a terminal IDE focused on low distraction, high usability.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Feature: Tasks file loading

  Scenario: .oo/tasks.yaml is loaded at startup
    Given after creating the file .oo/tasks.yaml with the following content:
      """
      version: 1

      tasks:
        scale:
          type: shell
          command: "scale --factor {factor}"
          inputs:
            factor:
              type: number
              default: 1
      """
    Then the tasks config contains task "scale"
    Then the command palette contains task "scale"