All Projects → hoschi → yode

hoschi / yode

Licence: MIT License
Yode - Focused Code Editing

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to yode

lowcode
React Lowcode - prototype, develop and maintain internal apps easier
Stars: ✭ 32 (+14.29%)
Mutual labels:  code, ast
Phpgrep
Syntax-aware grep for PHP code.
Stars: ✭ 185 (+560.71%)
Mutual labels:  code, ast
code summarization public
source code for 'Improving automatic source code summarization via deep reinforcement learning'
Stars: ✭ 71 (+153.57%)
Mutual labels:  code, ast
node-typescript-parser
Parser for typescript (and javascript) files, that compiles those files and generates a human understandable AST.
Stars: ✭ 121 (+332.14%)
Mutual labels:  ast
coding-untuk-semua
Coding untuk semua, kumpulan materi-materi untuk belajar coding/pemrograman.
Stars: ✭ 18 (-35.71%)
Mutual labels:  code
indent.js
Pure code indentation for jsx, tsx, ts, js, html, css, less, scss.
Stars: ✭ 55 (+96.43%)
Mutual labels:  code
boxquote.el
Quote text with a semi-box.
Stars: ✭ 16 (-42.86%)
Mutual labels:  editing
cosy
阿里云智能编码插件(Alibaba Cloud AI Coding Assistant)是一款AI编程助手,它提供代码智能补全和IDE内的代码示例搜索能力,帮助你更快更高效地写出高质量代码。
Stars: ✭ 211 (+653.57%)
Mutual labels:  code
CatCode
猫猫码,一个可爱的通用特殊码,CQ码的精神延续。/ Cat code, the spirit of CQ code continues, a cute universal special code.
Stars: ✭ 23 (-17.86%)
Mutual labels:  code
hxjsonast
Parse JSON into position-aware AST with Haxe!
Stars: ✭ 28 (+0%)
Mutual labels:  ast
msk-markdown
MSK Markdown is light markdown editor and viewer.
Stars: ✭ 99 (+253.57%)
Mutual labels:  editing
Parsia-Code
Contains random code and some of my older projects
Stars: ✭ 20 (-28.57%)
Mutual labels:  code
godot-engine.code-snapshot
A plugin for Godot Engine which will let you take beautified snapshots of your code within the Editor. Configure the frame as you like, with GDScript syntax already highlighted.
Stars: ✭ 32 (+14.29%)
Mutual labels:  code
gsql
GSQL is a structured query language code builder for golang.
Stars: ✭ 106 (+278.57%)
Mutual labels:  code
Abracadabra
A truly plug 'n' play solution for securing your code.
Stars: ✭ 12 (-57.14%)
Mutual labels:  code
XS-Labs-Style-Guide
XS-Labs Coding Style Guide for C, C++, Objective-C and x86 Assembly
Stars: ✭ 20 (-28.57%)
Mutual labels:  code
impast
A library for package AST importing
Stars: ✭ 26 (-7.14%)
Mutual labels:  ast
js-ziju
Compile javascript to LLVM IR, x86 assembly and self interpreting
Stars: ✭ 112 (+300%)
Mutual labels:  ast
CCHv2
CCHv2 - A powerful contest helper for CodeForces, developed by NW.js.
Stars: ✭ 108 (+285.71%)
Mutual labels:  code
prettier-markdown
Parse code blocks in markdown files and run prettier on them
Stars: ✭ 37 (+32.14%)
Mutual labels:  code

Yode - Focused Code Editing

npm version lerna Build Status

Edit smaller parts of a code base, so you can focus better on the important parts of a task. You can edit functions of JavaScript code as deeper level of a file. By focusing on functions of interest you can open an editor for each of it and arrange them to serve as context of your work. This frees you from the clutter of the rest of the file, containing this function. Yode is designed as library, so it can be integrated in existing text editors (NeoVim, Atom, ...).

Introduction Video

Yode Introduction Video

Motivation

I love text editors and I am a Vim/NeoVim user for years now. The power you get from a modal editor and such memoizable commands like ciw (change inner word) is very usefull when writing code. There are more editors out there, for every kind of person at least one. So I don't want to write a new text editor, instead I want to give them even more power.

Code is saved in files and with your text editor of choice you edit them, fine. They even help you by recognizing patterns (text objects) like words, lines, paragraphs, blocks in brackets and so on, great. For soucre code there is a version which is even more descriptive, called abstract syntax tree. I want to bring this knowledge to text editors so they can make use of it. For some ideas what could be done with this knowledge, just keep reading. When reading a file into the text editor it should be converted to an AST and from then this is the source of truth. This means when you change text of a node it gets converted back to an AST. Every time the AST or some part of it changed, the whole AST of the corresponding file gets written as text into the file, so the file is the destination of truth. This is important, because every other tool can still work with files and doesn't need to change anything. It also means you can still use features of your text editor which work on files like search/replace, removing files from disk and so on.

The smallest editable container in a text editor is a file. But files contain a lot of code, they group some kind of stuff together so you don't get too much files. This is a good thing, because you need an overview of your current code base. When you tackle a task you search the files you need to edit and then the parts of them which you need to change. At this point current text editors leave you a little bit alone when you want to organize these parts. Yode gives you the possibillty to focus on smaller parts of code than "a file". This prototype adds another level of changabillty, function nodes of the AST. A function can have its own editor, which is just an instance of your text editor but editing not a whole file. This way you can still use the features of your text editor, but in a more focused way. By removing all other content of the file around the function of interest, you remove clutter. By removing clutter, you get more screen space for other parts of code you are interessted in. Editing AST nodes brings also another way to navigate. Instead of switching between files you can now switch between nodes in the hierarchy the tree represents. You can drill down deeper into a node when you are interessted in an even smaller part of the current code. The other way around, you can walk up the tree to get a better overview when you lost track.

Features

Features of library accessible through prototype UI:

  • open function under cursor in own editor
  • changes in function editor synced to file
  • changes in file editor synced to open function editor
  • state tracking for unparsable code
  • move up in code hierarchy to expand current scope of editor
  • new files can be created on the fly
  • simple layout logic
    • open new function editor on right side so it doesn't bother left (main) side
    • editor can be sized horizontally to fine tune screen space occupied
    • vertical size of editor is given by content
    • editor can be closed when not needed anymore

Demo

https://hoschi.github.io/yode/

Sourcemaps are included, check console for profile logs which can be used as debugging entry point.

Current state of screenspace management

Splits are the current way to divide the editor screen into spaces which can show different parts. These parts can be different files or different parts of a file. A split has a (fragile) connection to the position it shows. In NeoVim you can create a split and scroll the current line to the top of the split. This position is mantained when you insert text above or below the current content of your split in another tab/split, which is already usefull. Unfortunately the position gets lost easily:

  • changing the size of the split e.g. by maximize it
  • add/remove a split which forces other splits to shrink/expand
  • add more text in the split so the text you want to see extends the size of your split, they don't resize to content
  • some opperations e.g. Gread to discard changes since last git commit

This makes the split useless, because you aren't looking at what you want to see anymore. You can close the split or manually reposition its content to show what you want to see.

NeoVim uses the tab/split model where you have tabs which contain splits. Other editors e.g. Atom uses the split/tab model where you split the screen and in one split you can have tabs. Latter model is even more useless, because now the size of your split must fit the size of content showed in each tab.

Yode solves a bunch of these problems by creating view containers which have their size connected to their content. This way you must not resize the view container you edit at the moment or other containers around. When more view containers visible then screen space availible, you still need to position them to view what is important to you at the very moment. In addition the current implementation of the prototype could be changed, so you can dip out of the "size of function editor is size of content" model, if you prefer this.

A first implementation of layout logic should help you with positioning by e.g. moving to top(/left) what is most important for you. You just mark the editors which you want to focus and layout logic shifts these windows to top, where all other go below of them. After that this can be improved or the user can select different layout logics per tab. As layouts used in Xmonad to manage window position in different ways

Implications

The features of current state implicate additional ones for the mature version of the library integrated in a real editor:

  • save screen space
    • vertical because function editor is as big as content, no space wasted
    • horizontal for nested function, because indent level starts for each editor at zero
    • open function editor for interessting function to keep context
    • less scrolling, only one global scrollbar
  • text editor (NeoVim, Atom, ...) features can now work on a range easily
    • search/replace
    • remove a whole function
    • relocate a whole function
    • ...
  • functions are now an additional "context object"
    • as autocompletion uses identifiers to give the user context
    • function editors can be now used as context as well
    • go crazy with machine learning here → e.g.
      • show function editor for function under cursor automatically
      • show last edited functions if there is space for it
      • ...
  • editors are focused now
    • the computer "knows" what one editor shows, because AST nodes has types e.g. "function" in prototypes case
    • editors are most of the time pretty small
    • both can be used to automatically layout editors instead of manual splitting panes
    • spawn editors for a logical group of code
      • current function and all its test functions
      • React dumb and smart component
      • used selectors and action creators of a smart component
      • ...
  • make other AST nodes editable
    • proof of concept makes function nodes editable, this can be expanded to other node types
    • Objects, to get editors for e.g. configs
    • Arrays
    • ...
  • use available AST for other things
    • add import statements automatically in file below last import already existing
    • add imported varible to already existing import
    • linting without the need to parse file (for speed)
    • probably snippets can work much better with AST
    • pretty all stuff IDEs do already
    • ...
  • use type of AST nodes as text objects in editors
    • add new operations to work with them
    • "change current function call" which changes called function but not the parameters
    • "change function body" which puts cursor right into the curly brackets and deletes current body so you can start from scratch
    • ...
  • hierarchy of function gets maintained
    • navigate in this tree, like "swap with parent" button
    • use as outline view

Roadmap

This project is actively mantained and development. It is a side project, so don't expect a full time working pace.

  • prototype
    • check if the problem can be solved with a reasonable performance
    • simple UI which mocks real editor (demo UI is not here to stay)
    • gather not obvious problems
  • refactor prototype into library
    • which can then be used to integrate in editor
    • separate logic for demo UI from core logic
    • separate parser from state logic where possible
  • integrate into Oni (NeoVim GUI)
    • build Oni plugin which glues Oni and Yode together
      • see ticket at Oni repo
      • sends current buffer content
      • sends events like (cursor moved)
      • implements layouting logic as in prototype
      • ...
    • \o/ when this milestone is done, it should be usable for every day work \o/
      • start with small window management features
      • keep performance issues till they lead to problems
  • search better solutions for known issues
  • build server around lib so it can communicate with editor integration which can't execute JavaScript
    • one server instance should keep state (open files, functions, ...) regarding one editor instance
    • protocol can be easy (e.g. JSON RPC) at this state and swapped with some more complex/faster/... (e.g. MessagePack) later

Name

"Yode" comes from the english word "node", because you edit (AST) nodes. I swapped the letter "n" with a "y". Y you ask? Y not! 😭

Additional docs

Known issues

As this is a prototype, the list is not complete.

  • big chunks of code changes
    • like cut & paste or git operations which make bigger changes than a user while writing in an editor
    • it is hard in this cases to identify the function (and its properties) reliable
  • code duplication
    • like copy & paste of a function to duplicate the overall logic and change the details afterwards. Probably during a refactoring session.
    • duplicated function should not overtake the properties of the existing (copied) function
    • if the editor supports this, copy/paste events can handled separatly to change e.g. the function name of the duplicate before pasting it

Contribution

Use the issue tracker for all kind of questions, bug reports, etc. I'll tag it then as needed. As the project is fast moving at the moment, ideas, general discussion and research about the problem space are also a good way to contribute. I'll collect them and pick it up when it is appropriate. As the current milestone is refactoring and the ideas for the next one are pretty roughly described, contributing with code is at the moment difficult. Please create a ticket, before submitting a pull request.

Ressources

These projects helped me a lot when developing this ❤️

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].