Skip to content

SidharthArya/comp-ide.el

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Comp IDE

Synopsis

Comp IDE is my effort to create a very basic ide which can be useful for competitive coding. Here’s a short demo: https://img.youtube.com/vi/zY0gr3Tv3hU/0.jpg

All the Input is internally linked to be passed into the executing program. And all the output of the program is internally sent to the output buffer, resulting in a seamless coding experience, IMO.

Basic Usage

(use-package comp-ide
  :straight (comp-ide :type git :fetcher github :repo "https://github.com/SidharthArya/comp-ide.el" :files (:defaults))
  :custom
  (comp-ide-auto-execute-on-compile t)
  :config
  (require 'comp-ide-recipes)
  (evil-define-key 'normal 'prog-mode-map (kbd "\\i") comp-ide-command-map) 
  (evil-define-key 'normal 'comp-ide-slave-mode-map (kbd "\\i") comp-ide-command-map)
  (evil-define-key 'normal 'prog-mode-map (kbd "\\ti") 'comp-ide)
  :bind
 ("C-c t i" . comp-ide)
  (:map comp-ide-command-map
        ("s" . comp-ide-goto-shell)
        ("c" . comp-ide-comp-ide-compile)
        ("e" . comp-ide-comp-ide-execute)
        ("l" . comp-ide-goto-input)
        ("k" . comp-ide-goto-output)
        ("h" . comp-ide-goto-code))
  :commands comp-ide)

TO DO

  • [ ] Customizable Execute and Compile Recipes
  • [ ] A different shell depending on what language is being used
  • [ ] Errors

Support

  • [ ] C
  • [ ] C++
  • [ ] Ruby
  • [ ] Java
  • [ ] Python
  • [ ] Clojure
  • [ ] Rust
  • [ ] Php
  • [ ] Haskell
  • [ ] Perl
  • [ ] Javascript

Releases

No releases published

Packages

No packages published