Skip to content

Commit 6bf78c1

Browse files
Merge pull request #4 from pulsar-edit/context-aware
Add context awareness
2 parents e0e2129 + 27d278c commit 6bf78c1

10,197 files changed

Lines changed: 359672 additions & 28 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ jobs:
1616
node-version: 16
1717
- name: Install
1818
run: |
19-
npm run prepare
2019
npm install
2120
- name: Test
2221
run: |

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/node_modules
22
/build
3-
/deps/libgit2/.npmignore
43
/lib/*.js
54
*.log
65
*~

.gitmodules

Lines changed: 0 additions & 4 deletions
This file was deleted.

deps/libgit2

Lines changed: 0 additions & 1 deletion
This file was deleted.

deps/libgit2/.HEADER

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
/*
2+
* This file is free software; you can redistribute it and/or modify
3+
* it under the terms of the GNU General Public License, version 2,
4+
* as published by the Free Software Foundation.
5+
*
6+
* In addition to the permissions in the GNU General Public License,
7+
* the authors give you unlimited permission to link the compiled
8+
* version of this file into combinations with other programs,
9+
* and to distribute those combinations without any restriction
10+
* coming from the use of this file. (The General Public License
11+
* restrictions do apply in other respects; for example, they cover
12+
* modification of the file, and distribution when not linked into
13+
* a combined executable.)
14+
*
15+
* This file is distributed in the hope that it will be useful, but
16+
* WITHOUT ANY WARRANTY; without even the implied warranty of
17+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18+
* General Public License for more details.
19+
*
20+
* You should have received a copy of the GNU General Public License
21+
* along with this program; see the file COPYING. If not, write to
22+
* the Free Software Foundation, 51 Franklin Street, Fifth Floor,
23+
* Boston, MA 02110-1301, USA.
24+
*/

deps/libgit2/.editorconfig

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
; Check http://editorconfig.org/ for more informations
2+
; Top-most EditorConfig file
3+
root = true
4+
5+
; tab indentation
6+
[*]
7+
indent_style = tab
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true
10+
11+
; 4-column space indentation
12+
[*.md]
13+
indent_style = space
14+
indent_size = 4
15+
trim_trailing_whitespace = false

deps/libgit2/.gitignore

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
/tests/clar.suite
2+
/tests/clar.suite.rule
3+
/tests/.clarcache
4+
/apidocs
5+
/trash-*.exe
6+
/libgit2.pc
7+
/config.mak
8+
*.o
9+
*.a
10+
*.exe
11+
*.gcda
12+
*.gcno
13+
*.gcov
14+
.lock-wafbuild
15+
.waf*
16+
build/
17+
build-amiga/
18+
tests/tmp/
19+
msvc/Debug/
20+
msvc/Release/
21+
*.sln
22+
*.suo
23+
*.vc*proj*
24+
*.sdf
25+
*.opensdf
26+
*.aps
27+
*.cmake
28+
!cmake/Modules/*.cmake
29+
.DS_Store
30+
*~
31+
.*.swp
32+
tags
33+
mkmf.log
34+
*.profdata
35+
*.profraw

deps/libgit2/.mailmap

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Vicent Martí <vicent@github.com> Vicent Marti <tanoku@gmail.com>
2+
Vicent Martí <vicent@github.com> Vicent Martí <tanoku@gmail.com>
3+
Michael Schubert <schu@schu.io> schu <schu-github@schulog.org>
4+
Ben Straub <bs@github.com> Ben Straub <ben@straubnet.net>
5+
Ben Straub <bs@github.com> Ben Straub <bstraub@github.com>
6+
Carlos Martín Nieto <cmn@dwim.me> <carlos@cmartin.tk>
7+
Carlos Martín Nieto <cmn@dwim.me> <cmn@elego.de>
8+
nulltoken <emeric.fermas@gmail.com> <emeric.fermas@gmail.com>
9+
Scott J. Goldman <scottjg@github.com> <scottjgo@gmail.com>
10+
Martin Woodward <martin.woodward@microsoft.com> <martinwo@microsoft.com>
11+
Peter Drahoš <drahosp@gmail.com> <drahosp@gmail.com>
12+
Adam Roben <adam@github.com> <adam@roben.org>
13+
Adam Roben <adam@github.com> <adam@github.com>
14+
Xavier L. <xavier.l@afrosoft.tk> <xavier.l@afrosoft.ca>
15+
Xavier L. <xavier.l@afrosoft.tk> <xavier.l@afrosoft.tk>
16+
Sascha Cunz <sascha@babbelbox.org> <Sascha@BabbelBox.org>
17+
Authmillenon <authmillenon@googlemail.com> <martin@ucsmail.de>
18+
Authmillenon <authmillenon@googlemail.com> <authmillenon@googlemail.com>
19+
Edward Thomson <ethomson@edwardthomson.com> <ethomson@microsoft.com>
20+
Edward Thomson <ethomson@edwardthomson.com> <ethomson@github.com>
21+
J. David Ibáñez <jdavid.ibp@gmail.com> <jdavid@itaapy.com>
22+
Russell Belfer <rb@github.com> <arrbee@arrbee.com>

deps/libgit2/AUTHORS

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
The following people contribute or have contributed
2+
to the libgit2 project (sorted alphabetically):
3+
4+
Alex Budovski
5+
Alexei Sholik
6+
Andreas Ericsson
7+
Anton "antong" Gyllenberg
8+
Ankur Sethi
9+
Arthur Schreiber
10+
Ben Noordhuis
11+
Ben Straub
12+
Benjamin C Meyer
13+
Brian Downing
14+
Brian Lopez
15+
Carlos Martín Nieto
16+
Colin Timmermans
17+
Daniel Huckstep
18+
Dave Borowitz
19+
David Boyce
20+
David Glesser
21+
Dmitry Kakurin
22+
Dmitry Kovega
23+
Emeric Fermas
24+
Emmanuel Rodriguez
25+
Eric Myhre
26+
Erik Aigner
27+
Florian Forster
28+
Holger Weiss
29+
Ingmar Vanhassel
30+
J. David Ibáñez
31+
Jacques Germishuys
32+
Jakob Pfender
33+
Jason Penny
34+
Jason R. McNeil
35+
Jerome Lambourg
36+
Johan 't Hart
37+
John Wiegley
38+
Jonathan "Duke" Leto
39+
Julien Miotte
40+
Julio Espinoza-Sokal
41+
Justin Love
42+
Kelly "kelly.leahy" Leahy
43+
Kirill A. Shutemov
44+
Lambert CLARA
45+
Luc Bertrand
46+
Marc Pegon
47+
Marcel Groothuis
48+
Marco Villegas
49+
Michael "schu" Schubert
50+
Microsoft Corporation
51+
Olivier Ramonat
52+
Peter Drahoš
53+
Pierre Habouzit
54+
Pierre-Olivier Latour
55+
Przemyslaw Pawelczyk
56+
Ramsay Jones
57+
Robert G. Jakabosky
58+
Romain Geissler
59+
Romain Muller
60+
Russell Belfer
61+
Sakari Jokinen
62+
Samuel Charles "Sam" Day
63+
Sarath Lakshman
64+
Sascha Cunz
65+
Sascha Peilicke
66+
Scott Chacon
67+
Sebastian Schuberth
68+
Sergey Nikishin
69+
Shawn O. Pearce
70+
Shuhei Tanuma
71+
Steve Frécinaux
72+
Sven Strickroth
73+
Tim Branyen
74+
Tim Clem
75+
Tim Harder
76+
Torsten Bögershausen
77+
Trent Mick
78+
Vicent Marti

0 commit comments

Comments
 (0)