Skip to content

Commit

Permalink
rename var to remove conflict with project.el (#24)
Browse files Browse the repository at this point in the history
* rename var to remove conflict with project.el

* use 29.1

* update gh actions
  • Loading branch information
snowiow authored Dec 11, 2023
1 parent 5ec3f4b commit 27c52a3
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
- checkdoc
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: purcell/setup-emacs@v4.0
- uses: actions/checkout@v4
- uses: purcell/setup-emacs@v6.0
with:
version: 28.1
version: 29.1
- name: install dependencies
run: |
emacs -Q --batch -l .github/workflows/install-deps.el
Expand Down
4 changes: 2 additions & 2 deletions aws-codebuild.el
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@
"codebuild list-projects --output=text --query projects"
[("Projects" 100)]))

(defun aws-codebuild--get-project (project-name)
(defun aws-codebuild--get-project (codebuild-project-name)
"Get Codebuild Project under cursor."

Check warning on line 42 in aws-codebuild.el

View workflow job for this annotation

GitHub Actions / lint (checkdoc)

Argument ‘codebuild-project-name’ should appear (as CODEBUILD-PROJECT-NAME) in the doc string
(interactive)
(aws-core--describe-current-resource "codebuild batch-get-projects --query 'projects[0]' --names " project-name))
(aws-core--describe-current-resource "codebuild batch-get-projects --query 'projects[0]' --names " codebuild-project-name))

;; TRANSIENTS
(transient-define-prefix aws-codebuild-help-popup ()
Expand Down
29 changes: 29 additions & 0 deletions aws-evil.el
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,35 @@
(evil-define-key 'normal aws-events-rules-mode-map
(kbd "q") #'aws-events)

;; aws-iam
(evil-define-key 'normal aws-iam-mode-map
(kbd "P") #'aws-set-profile
(kbd "RET") #'aws-iam-groups-get-service
(kbd "q") #'aws)

;; aws-iam-group-mode
(evil-define-key 'normal aws-iam-groups-mode-map
(kbd "?") #'aws-iam-groups-help-popup
(kbd "RET") #'aws-iam-groups--get-group
(kbd "P") #'aws-set-profile
(kbd "a") #'aws-iam-groups--list-attached-group-policies
(kbd "i") #'aws-iam-groups--list-group-inline-policies
(kbd "q") #'aws-iam)

;; aws-iam-inline-policies-mode
(evil-define-key 'normal aws-iam-group-inline-policies-mode-map
(kbd "?") #'aws-iam-group-inline-policies-help-popup
(kbd "E") #'aws-iam-group-inline-policies--edit-policy
(kbd "P") #'aws-set-profile
(kbd "q") #'aws-iam-groups)

;; aws-iam-policies-mode
(evil-define-key 'normal aws-iam-policies-mode-map
(kbd "?") #'aws-iam-policies-help-popup
(kbd "P") #'aws-set-profile
(kbd "E") #'aws-iam-policies--edit-policy
(kbd "q") #'aws-iam)

;; aws-lambda-mode
(evil-define-key 'normal aws-lambda-mode-map
(kbd "RET") #'aws-lambda-get-function
Expand Down

0 comments on commit 27c52a3

Please sign in to comment.