diff options
author | William Carroll <wpcarro@gmail.com> | 2017-06-23T17·01-0400 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2017-06-23T17·01-0400 |
commit | f344f2e370fbf88a0306b6a01c99f386a13953c7 (patch) | |
tree | 81c19178bdc8986b59d3bca5e91efd9f01690941 /emacs | |
parent | e51d11e4bc344f624ec90afd299ac1dcb5e6e1fb (diff) |
Adds os detection for bootstrapping configs
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/wc-ansi-term-functions.el | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/emacs/wc-ansi-term-functions.el b/emacs/wc-ansi-term-functions.el new file mode 100644 index 000000000000..aae9e0c6c238 --- /dev/null +++ b/emacs/wc-ansi-term-functions.el @@ -0,0 +1,11 @@ +;; if in a project + ;; if ansi-term is an existing process for the current project + ;; ok + ;; create an ansi-term buffer for the current project + ;; if ansi-term is an open window + ;; if number of open windows == 1, visit MRU source code buffer + ;; if number of open windows > 1, (delete-window ansi-term-window) + ;; if ansi-term is not an open window + ;; open ansi-term other-window +;; else + ;; (message "You are not currently in a project.") |