Giter VIP home page Giter VIP logo

lite-xl-gitdiff-highlight's Introduction

lite-xl git diff highlight plugin

screenshot

This plugin will highlight changed lines of any file tracked by git

Clone this repo and symlink init.lua and gitdiff.lua into USERDIR/plugins/gitdiff_highlight or download the files and copy them there

gitdiff.lua - an oddly specific git diff parser

gitdiff.lua is a gitdiff parser, so if you want to parse git diffs in lua for any other reason, feel free to use it under the MIT license

usage

place gitdiff.lua in the same folder as the script you'll be using it with

local gitdiff = require "gitdiff"

 -- diff is the output of the `git diff` command
 -- this only works on single-file diffs
gitdiff.changed_lines(diff)
-- returns a table that looks like the following:
{
	nil,
	nil,
	"addition",
	"addition",
	nil,
	nil,
	"modification",
	"deletion",
	nil,
	nil
}
-- where the index of the table is the line number the change corresponds to

test.lua

pipe a git diff into its stdin and it will run some tests on gitdiff.lua

eg: cat test_diff.txt | lua test.lua

eg #2: git diff gitdiff.lua | lua test.lua

lite-xl-gitdiff-highlight's People

Contributors

vincens2005 avatar swissalps avatar torchedsammy avatar jminor avatar dheison0 avatar dogtorrent avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.