SublimeText / Origami

Split the window however you like! Create new panes, delete panes, move and clone views from pane to pane.
MIT License
1.21k stars 82 forks source link

ST4: create_pane_with_file does not move the file #161

Closed rpbaptist closed 3 years ago

rpbaptist commented 3 years ago

The behavior is exactly as create_pane

Edit:

To anyone encountering this, the workaround is to use the undocumented chain command:

  {
    "keys": ["ctrl+space", "ctrl+u"],
    "command": "chain",
    "args": {
      "commands": [
        {"command": "create_pane", "args": {"direction": "up"}},
        {"command": "pull_file_from_pane", "args": {"direction": "down"}}
      ]
    }
  },