-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from mashita1023/fix-script
fix
- Loading branch information
Showing
21 changed files
with
414 additions
and
180 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
legacy_version_file = yes |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
function pull | ||
git fetch --all -avp | ||
git stash | ||
git switch develop | ||
git pull upstream develop | ||
set merged_branch (git branch --merged | egrep -v '\*|develop|main') | ||
echo $merged_branch | xargs git branch -d | ||
git switch - | ||
echo "delete branch list: $merged_branch" | ||
end |
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,6 @@ | ||
function review | ||
set pr_num $argv[1] | ||
echo $pr_num | ||
git fetch upstream pull/$pr_num/head:pull/$pr_num | ||
git switch pull/$pr_num | ||
end |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,30 +3,7 @@ | |
;; If you edit it by hand, you could mess it up, so be careful. | ||
;; Your init file should contain only one such instance. | ||
;; If there is more than one, they won't work right. | ||
'(auto-save-default nil) | ||
'(create-lockfiles nil) | ||
'(custom-file "~/dotfiles/.leaf.d/custom.el") | ||
'(debug-on-error t) | ||
'(electric-pair-mode t) | ||
'(highlight-indent-guides-auto-character-face-perc 20) | ||
'(highlight-indent-guides-character 124) | ||
'(highlight-indent-guides-method 'character) | ||
'(imenu-list-position 'left t) | ||
'(imenu-list-size 30 t) | ||
'(indent-tabs-mode nil) | ||
'(init-file-debug t t) | ||
'(make-backup-files nil) | ||
'(package-archives | ||
'(("org" . "https://orgmode.org/elpa/") | ||
("melpa" . "https://melpa.org/packages/") | ||
("gnu" . "https://elpa.gnu.org/packages/"))) | ||
'(package-selected-packages '(use-package blackout el-get hydra leaf-keywords leaf)) | ||
'(scroll-bar-mode nil t) | ||
'(show-paren-delay 0.1) | ||
'(truncate-lines t) | ||
'(user-full-name "Toshichika Mashimo") | ||
'(user-login-name "mashita1023" t) | ||
'(user-mail-address "[email protected]")) | ||
'(package-selected-packages '(use-package blackout el-get hydra leaf-keywords leaf))) | ||
(custom-set-faces | ||
;; custom-set-faces was added by Custom. | ||
;; If you edit it by hand, you could mess it up, so be careful. | ||
|
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,93 @@ | ||
;;; .loaddefs.el --- automatically extracted autoloads (do not edit) -*- lexical-binding: t -*- | ||
;; Generated by the `loaddefs-generate' function. | ||
|
||
;; This file is part of GNU Emacs. | ||
|
||
;;; Code: | ||
|
||
|
||
;;;### (autoloads nil "copilot/copilot" "copilot/copilot.el" (0 0 | ||
;;;;;; 0 0)) | ||
;;; Generated autoloads from copilot/copilot.el | ||
|
||
(autoload 'copilot-mode "copilot/copilot" "\ | ||
Minor mode for Copilot. | ||
This is a minor mode. If called interactively, toggle the | ||
`Copilot mode' mode. If the prefix argument is positive, enable | ||
the mode, and if it is zero or negative, disable the mode. | ||
If called from Lisp, toggle the mode if ARG is `toggle'. Enable | ||
the mode if ARG is nil, omitted, or is a positive number. | ||
Disable the mode if ARG is a negative number. | ||
To check whether the minor mode is enabled in the current buffer, | ||
evaluate `copilot-mode'. | ||
The mode's hook is called both when the mode is enabled and when | ||
it is disabled. | ||
\(fn &optional ARG)" t) | ||
|
||
(put 'global-copilot-mode 'globalized-minor-mode t) | ||
|
||
(defvar global-copilot-mode nil "\ | ||
Non-nil if Global Copilot mode is enabled. | ||
See the `global-copilot-mode' command | ||
for a description of this minor mode. | ||
Setting this variable directly does not take effect; | ||
either customize it (see the info node `Easy Customization') | ||
or call the function `global-copilot-mode'.") | ||
|
||
(custom-autoload 'global-copilot-mode "copilot/copilot" nil) | ||
|
||
(autoload 'global-copilot-mode "copilot/copilot" "\ | ||
Toggle Copilot mode in all buffers. | ||
With prefix ARG, enable Global Copilot mode if ARG is positive; | ||
otherwise, disable it. | ||
If called from Lisp, toggle the mode if ARG is `toggle'. | ||
Enable the mode if ARG is nil, omitted, or is a positive number. | ||
Disable the mode if ARG is a negative number. | ||
Copilot mode is enabled in all buffers where | ||
`copilot-turn-on-unless-buffer-read-only' would do it. | ||
See `copilot-mode' for more information on Copilot mode. | ||
\(fn &optional ARG)" t) | ||
|
||
(autoload 'copilot-complete "copilot/copilot" "\ | ||
Complete at the current point." t) | ||
|
||
(autoload 'copilot-install-server "copilot/copilot" "\ | ||
Interactively install server." t) | ||
|
||
(autoload 'copilot-reinstall-server "copilot/copilot" "\ | ||
Interactively re-install server." t) | ||
|
||
(autoload 'copilot-uninstall-server "copilot/copilot" "\ | ||
Delete a Copilot server from `copilot-install-dir'." t) | ||
|
||
(register-definition-prefixes "copilot/copilot" '("copilot-")) | ||
|
||
;;;*** | ||
|
||
;;;### (autoloads nil "copilot/copilot-balancer" "copilot/copilot-balancer.el" | ||
;;;;;; (0 0 0 0)) | ||
;;; Generated autoloads from copilot/copilot-balancer.el | ||
|
||
(register-definition-prefixes "copilot/copilot-balancer" '("copilot-balancer-")) | ||
|
||
;;;*** | ||
|
||
;;; End of scraped data | ||
|
||
;; Local Variables: | ||
;; version-control: never | ||
;; no-update-autoloads: t | ||
;; no-native-compile: t | ||
;; coding: utf-8-emacs-unix | ||
;; End: | ||
|
||
;;; .loaddefs.el ends here |
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,3 @@ | ||
((copilot status "installed" recipe | ||
(:name copilot :type github :pkgname "copilot-emacs/copilot.el" :after nil)) | ||
(el-get status "required")) |
Submodule copilot
added at
733bff
Oops, something went wrong.