| | 137 | === Comments === |
| | 138 | |
| | 139 | These are some notes for anyone considering writing this plugin. |
| | 140 | |
| | 141 | * Vim has the 'read' command which can read the output from a command into a buffer using the pling operator. E.g. :read !dir will read a directory listing into the current buffer. |
| | 142 | * Vim has special buffers for storing different types of output. See :help special-buffers and :help cwindow |
| | 143 | * The Project plugin has the function CreateEntriesFromDir() which can be used to create new entries. Passing '1' as the arguement will create a recursive entry which would be most appropriate for creating Django entries. |
| | 144 | |
| | 145 | It would be useful for the plugin to grab any tracebacks and place the cursor in a suitable spot. |