Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/karimaziev/company-extra
Addional commands for company
https://github.com/karimaziev/company-extra
Last synced: 4 days ago
JSON representation
Addional commands for company
- Host: GitHub
- URL: https://github.com/karimaziev/company-extra
- Owner: KarimAziev
- License: gpl-3.0
- Created: 2024-02-23T14:12:14.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-11-09T12:23:40.000Z (5 days ago)
- Last Synced: 2024-11-09T13:24:37.205Z (5 days ago)
- Language: Emacs Lisp
- Size: 25.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
- License: LICENSE
Awesome Lists containing this project
README
#+OPTIONS: ^:nil tags:nil num:nil
* About
Addional commands for company.
* Table of Contents :TOC_2_gh:QUOTE:
#+BEGIN_QUOTE
- [[#about][About]]
- [[#requirements][Requirements]]
- [[#installation][Installation]]
- [[#with-use-package-and-straightel][With use-package and straight.el]]
- [[#manual-installation][Manual installation]]
#+END_QUOTE* Requirements
| Name | Version |
|-----------+---------|
| Emacs | 26.1 |
| ~company~ | 0.10.1 |* Installation
** With use-package and straight.el
#+begin_src elisp :eval no
(use-package company-extra
:after (company)
:demand t
:straight (company-extra
:repo "KarimAziev/company-extra"
:type git
:host github)
:bind (:package company
:map company-active-map
("C-M-n" . company-extra-select-next-and-show-doc)
("C-M-p" . company-extra-select-previous-and-show-doc)))
#+end_src** Manual installation
Download the source code and put it wherever you like, e.g. into =~/.emacs.d/company-extra/=
#+begin_src shell :eval no
git clone https://github.com/KarimAziev/company-extra.git ~/.emacs.d/company-extra/
#+end_srcAdd the downloaded directory to the load path:
#+begin_src elisp :eval no
(add-to-list 'load-path "~/.emacs.d/company-extra/")
(require 'company-extra)
#+end_src