first commit

This commit is contained in:
John Paul Wohlscheid
2026-02-16 14:53:28 -05:00
commit b6406a205a
3 changed files with 1130 additions and 0 deletions

35
.gitignore vendored Normal file
View File

@@ -0,0 +1,35 @@
.mypy_cache/
.pytest_cache/
/.project
/.pydevproject
/.settings
/.cproject
/.idea
/.vscode
__pycache__
/.coverage/
/.coveragerc
/install dir
/work area
/meson-test-run.txt
/meson-test-run.xml
/meson-cross-test-run.txt
/meson-cross-test-run.xml
.DS_Store
*~
*.swp
packagecache
.wraplock
/MANIFEST
/build
/dist
/meson.egg-info
/docs/built_docs
/docs/hotdoc-private*
*.pyc
/*venv*

1085
main.c Normal file

File diff suppressed because it is too large Load Diff

10
meson.build Normal file
View File

@@ -0,0 +1,10 @@
project('supernotepad', 'c', version: '0.1', default_options: ['warning_level=2'])
gtk = dependency('gtk+-3.0')
gtksource = dependency('gtksourceview-4')
executable('SuperNotepad',
'main.c',
dependencies: [gtk, gtksource],
install: true
)