This file contains hidden or 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
name: Publish | |
on: | |
push: | |
branches: [master] | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
concurrency: |
This file contains hidden or 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
SPC | |
SPC: find file | |
, switch buffer | |
. browse files | |
: MX | |
; EX | |
< switch buffer | |
` eval | |
u universal arg | |
x pop up scratch |
This file contains hidden or 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
// Creating a node graph editor for Dear ImGui | |
// Quick sample, not production code! This is more of a demo of how to use Dear ImGui to create custom stuff. | |
// See https://github.com/ocornut/imgui/issues/306 for details | |
// And more fancy node editors: https://github.com/ocornut/imgui/wiki#Useful-widgets--references | |
// Changelog | |
// - v0.04 (2020-03): minor tweaks | |
// - v0.03 (2018-03): fixed grid offset issue, inverted sign of 'scrolling' | |
#include <math.h> // fmodf |