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
namespace GraphicsTestApp | |
{ | |
partial class Form1 | |
{ | |
/// <summary> | |
/// Required designer variable. | |
/// </summary> | |
private System.ComponentModel.IContainer components = null; | |
/// <summary> |
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
;;; Package: lsp-mode - language server protocol | |
(use-package lsp-mode | |
:straight t | |
:diminish lsp-mode ;; I can see if it is active in the menu! | |
:commands (lsp lsp-deferred) | |
:hook ((c-mode . lsp-deferred) | |
(c++-mode . lsp-deferred)) | |
:bind (:map lsp-mode-map | |
("C-c o" . lsp-describe-thing-at-point) |
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
(let ((default-directory (or (locate-dominating-file "." ".git") | |
(locate-dominating-file "." ".svn") | |
(locate-dominating-file "." "CMakeLists.txt") | |
(locate-dominating-file "." "GNUmakefile") | |
(locate-dominating-file "." "Makefile") | |
default-directory))) | |
(cd (or (locate-dominating-file (buffer-file-name) ".git") ".")) | |
(compile compile-command) |
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
(use-package ediff | |
:commands (ediff-setup-keymap) | |
:config | |
(setq ediff-window-setup-function 'ediff-setup-windows-plain) | |
(setq ediff-split-window-function 'split-window-horizontally) | |
(setq ediff-diff-options "-w") | |
(defun my--ediff-hook () | |
(ediff-setup-keymap) | |
(bind-key "j" 'ediff-next-difference ediff-mode-map) | |
(bind-key "k" 'ediff-previous-difference ediff-mode-map)) |
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
#!/bin/sh | |
# Step 1: clone projects into directories with a leading "git-": | |
# | |
# git clone http://foo.org/foo.git git-foo | |
# git clone http://bar.org/bar.git git-bar | |
# | |
# Step 2: some hours/days/weeks later, run this script: | |
# | |
# ./update.sh |