This repository has been archived by the owner on Apr 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 298
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
192 changed files
with
4,631 additions
and
1,400 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,14 @@ | ||
<!-- Want this issue prioritized? Please consider supporting the project and becoming an insider! | ||
👉 https://www.onivim.io/Insiders --> | ||
|
||
**Oni Version:** | ||
**Neovim Version (Linux only):** | ||
**Operating System:** | ||
|
||
**Issue:** | ||
|
||
**Expected behavior:** | ||
|
||
**Actual behavior:** | ||
|
||
**Steps to reproduce:** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,3 +30,6 @@ backers: | |
- 1718128 | ||
- 2042893 | ||
- 14060883 | ||
- 244396 | ||
- 8832878 | ||
- 5127194 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// Custom type definitions for classnames master branch | ||
// Project: https://github.com/JedWatson/classnames | ||
|
||
declare module "classnames" { | ||
type ClassValue = string | number | ClassDictionary | ClassArray | undefined | null | false | ||
|
||
interface ClassDictionary { | ||
[id: string]: boolean | undefined | null | ||
} | ||
|
||
// This is the only way I found to break circular references between ClassArray and ClassValue | ||
// https://github.com/Microsoft/TypeScript/issues/3496#issuecomment-128553540 | ||
interface ClassArray extends Array<ClassValue> {} // tslint:disable-line no-empty-interface | ||
|
||
type ClassNamesFn = (...classes: ClassValue[]) => string | ||
|
||
const classNames: ClassNamesFn | ||
|
||
export default classNames | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.