Skip to content

Commit 7373866

Browse files
authored
Merge pull request #1 from mlmhl/initial_implement
Add initial implement of the resize controller
2 parents 30a81bb + 79b18a8 commit 7373866

File tree

1,639 files changed

+735918
-0
lines changed

Some content is hidden

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

1,639 files changed

+735918
-0
lines changed

.gitignore

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# Compiled binaries and deployment files
2+
/bin/
3+
4+
# Binaries for programs and plugins
5+
*.exe
6+
*.dll
7+
*.so
8+
*.dylib
9+
10+
# Test binary, build with `go test -c`
11+
*.test
12+
13+
# Output of the go coverage tool, specifically when used with LiteIDE
14+
*.out
15+
16+
# OSX leaves these everywhere on SMB shares
17+
._*
18+
19+
# OSX trash
20+
.DS_Store
21+
22+
# Eclipse files
23+
.classpath
24+
.project
25+
.settings/**
26+
27+
# Files generated by JetBrains IDEs, e.g. IntelliJ IDEA
28+
.idea/
29+
*.iml
30+
31+
# Vscode files
32+
.vscode
33+
34+
# Emacs save files
35+
*~
36+
\#*\#
37+
.\#*
38+
39+
# Vim-related files
40+
[._]*.s[a-w][a-z]
41+
[._]s[a-w][a-z]
42+
*.un~
43+
Session.vim
44+
.netrwhist

0 commit comments

Comments
 (0)