akiradeveloper / ijk

Licence: MIT license
A real editor for real programmers

Programming Languages

rust
11053 projects

Projects that are alternatives of or similar to ijk

pylaprof
A Python sampling profiler for AWS Lambda functions (and not only).
Stars: ✭ 12 (-72.09%)
Mutual labels:  flamegraph
jmc-flame-view
View for Mission Control for rendering stack traces as flame graphs. Note that this is now part of JMC 7.1.0, and all further development will take place in the JMC repos.
Stars: ✭ 104 (+141.86%)
Mutual labels:  flamegraph
AppDynamics.DEXTER
Turn your APM data store into a Data Warehouse with advanced reporting, including entities, configuration, metrics, flowmaps, events, snapshots and call graph flame graphs
Stars: ✭ 79 (+83.72%)
Mutual labels:  flamegraph
flamescope
Export flame data to speedscope's format
Stars: ✭ 26 (-39.53%)
Mutual labels:  flamegraph
Speedscope
🔬 A fast, interactive web-based viewer for performance profiles.
Stars: ✭ 3,256 (+7472.09%)
Mutual labels:  flamegraph
flamegrapher
Web frontend and REST API for Java Flight Recorder with Flamegraphs 🔥
Stars: ✭ 77 (+79.07%)
Mutual labels:  flamegraph
flight-recorder-starter
This is a Spring Boot 2 Starter exposing the JDK Flight Recorder as a Spring Boot Actuator Endpoint.
Stars: ✭ 20 (-53.49%)
Mutual labels:  flamegraph
FlameViewer
Tool for flamegraphs visualization
Stars: ✭ 76 (+76.74%)
Mutual labels:  flamegraph
Game-Tricks
Game Tricks !!!
Stars: ✭ 91 (+111.63%)
Mutual labels:  flamegraph
ngx-flamegraph
Flame graph for stack trace visualization written in Angular
Stars: ✭ 54 (+25.58%)
Mutual labels:  flamegraph

ijk

Tokei Build Status

A real editor for real programmers.

Demo

Usage

Design Doc

Design Doc

Features

ijk is similar to vi but with some differences:

  • Word range: In vi, dw and cw affects the range from the current cursor position to the end of the word as if user started a visual mode and word-jumped. This behavior is rarely meaningful in software programming. Instead, dw and cw affects the entire word the cursor is on. This behavior is consistent with the char version of delete and replace (x and r) in a sense that they affect the object the cursor is on.
  • Native directory explorer: ijk has a native implementation of directory explorer similar to Defx. This is because real software programming rarely end up with coding a single file but many files and directories in tree. With the explorer you can access to files and directories using line jump and string search as in text editting.
  • Navigator: Navigator is the central part of ijk and you can switch to navigator anytime by pressing C-w. Navigator is like a stack of living pages. You can access to any open files, directories and other temporary pages like command selector and switch between them very quickly.
  • Space prefix: vi's command prefix is often mistyped because it needs two keys (shift+;) pressed at the same time in US keyboard. ijk uses space to start command mode where you can w to save the file etc.

Tasks

  • Syntax highlighting (probably the syntect is a good choice)
  • Automated benchmarking (using flamer is planned) and performance optimization
  • Code snippet
  • User config
  • Integration with language server
  • Integration with Git
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].