Skip to content

Commit 7552c26

Browse files
committed
Manual intervention required: renamed project to intellimacs
project renamed in order to avoid possible trademark issues.
1 parent 8c9f878 commit 7552c26

File tree

5 files changed

+76
-66
lines changed

5 files changed

+76
-66
lines changed

CHANGELOG.org

+11-2
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,14 @@
66

77
** [[https://github.com/marcoieni/intellimacs/compare/v0.0.1...HEAD][Unreleased]]
88

9-
** [[https://github.com/marcoieni/intellimacs/tags/v0.0.1][0.0.1]] - 2019-12-27
10-
Initial version.
9+
** [[https://github.com/marcoieni/intellimacs/tags/v0.0.1...v1.0.0][1.0.0]] - 2019-12-27
10+
Manual intervention is required:
11+
- execute =mv ~/intellispace ~/.intellimacs=
12+
- change the occurrences of =intellispace= to =.intellimacs= inside your =.ideavimrc= file.
13+
14+
*** Changed
15+
- Renamed project to intellimacs because intellispace is a registered trademark.
16+
- Project saved to an hidden directory.
17+
18+
** [[https://github.com/MarcoIeni/intelli-space/releases/tag/v0.0.1][0.0.1]] - 2019-12-27
19+
Initial release.

README.org

+16-15
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#+TITLE: IntelliSpace
1+
#+TITLE: Intellimacs
22

33
[[http://spacemacs.org][file:https://cdn.rawgit.com/syl20bnr/spacemacs/442d025779da2f62fc86c2082703697714db6514/assets/spacemacs-badge.svg]]
44

@@ -20,20 +20,20 @@ IdeaVim parses the [[https://github.com/JetBrains/ideavim/blob/master/src/com/ma
2020
=:action {name}= command, used to execute arbitrary IDE actions.
2121
To list all IDE actions use the command =:actionlist [pattern]=.
2222

23-
IntelliSpace provides different files, which can be included individually in
23+
Intellimacs provides different files, which can be included individually in
2424
your own =.ideavimrc=, in order to get only the functionalities you want.
2525

2626
* Key bindings
27-
IntelliSpace is composed of three modules:
27+
Intellimacs is composed of three modules:
2828
- spacemacs :: Contains Spacemacs settings and key bindings
2929
that can be replicated with a similar behaviour in the IntelliJ platform.
3030
- extra :: Contains settings and key bindings not present in
3131
Spacemacs, but that may be useful in the IntelliJ platform.
3232
- major :: Contains key bindings that start with ~SPC m~, that may
3333
or may not be present in some Spacemacs major mode.
3434

35-
Furthermore, IntelliSpace provides some of the features of Spacemacs hybrid
36-
mode, which may be enabled by sourcing the file =~/intelli-space/hybrid.vim=.
35+
Furthermore, Intellimacs provides some of the features of Spacemacs hybrid
36+
mode, which may be enabled by sourcing the file =~/.intellimacs/hybrid.vim=.
3737

3838
Read [[./KEYBINDINGS.org]] to see all 200+ available key bindings.
3939

@@ -42,20 +42,19 @@ Read [[./KEYBINDINGS.org]] to see all 200+ available key bindings.
4242
Plugins -> Search for IdeaVim -> Install IdeaVim).
4343
2. Clone this repository in your home directory:
4444
#+begin_src sh
45-
cd ~
46-
git clone https://github.com/MarcoIeni/intelli-space
45+
git clone https://github.com/MarcoIeni/intellimacs ~/.intellimacs
4746
#+end_src
4847
3. In your home directory, create the file =.ideavimrc= and edit it in order to
4948
include the modules you want by sourcing the relative source files.
5049
In the following there is an example of =.ideavimrc= file that includes all
51-
the functionalities offered by IntelliSpace.
50+
the functionalities offered by Intellimacs.
5251
In this file you can also include your own vim commands.
5352
#+begin_src vimrc
54-
" Selected IntelliSpace modules
55-
source ~/intelli-space/spacemacs.vim
56-
source ~/intelli-space/extra.vim
57-
source ~/intelli-space/major.vim
58-
source ~/intelli-space/hybrid.vim
53+
" Selected Intellimacs modules
54+
source ~/.intellimacs/spacemacs.vim
55+
source ~/.intellimacs/extra.vim
56+
source ~/.intellimacs/major.vim
57+
source ~/.intellimacs/hybrid.vim
5958

6059
" My own vim commands
6160
nnoremap Y y$
@@ -68,7 +67,9 @@ Read [[./KEYBINDINGS.org]] to see all 200+ available key bindings.
6867
=.ideavimrc= (you may break something).
6968

7069
* Update
71-
In order to update run =git pull= inside the intelli-space directory.
70+
In order to update run =git pull= inside the intellimacs directory.
71+
72+
Read [[./CHANGELOG.org]] to see what changed.
7273

7374
* Suggested plugins
7475
[[./PLUGINS.org]] contains a list of useful plugins that help to replicate the Spacemacs experience.
@@ -79,7 +80,7 @@ In order to update run =git pull= inside the intelli-space directory.
7980
The key bindings work only when you are inside the code.
8081
For example, if you are inside the project window they don't work.
8182
Press ~<Esc>~ to focus the last visited code window and you will be able to
82-
use IntelliSpace key bindings again.
83+
use spacemacs key bindings again.
8384

8485
** Scroll menus without arrow keys
8586
In order to scroll menus without using arrow keys, press ~SPC f e d~ to go to

extra.vim

+18-18
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,23 @@
22
""" spacemacs defaults
33

44
" Settings
5-
source ~/intelli-space/extra/settings.vim
5+
source ~/.intellimacs/extra/settings.vim
66

77
" Key bindings
8-
source ~/intelli-space/extra/applications.vim
9-
source ~/intelli-space/extra/bookmarks.vim
10-
source ~/intelli-space/extra/buffers.vim
11-
source ~/intelli-space/extra/compile-comments.vim
12-
source ~/intelli-space/extra/errors.vim
13-
source ~/intelli-space/extra/files.vim
14-
source ~/intelli-space/extra/frame.vim
15-
source ~/intelli-space/extra/git-vcs.vim
16-
source ~/intelli-space/extra/help-history.vim
17-
source ~/intelli-space/extra/jump.vim
18-
source ~/intelli-space/extra/leader.vim
19-
source ~/intelli-space/extra/run.vim
20-
source ~/intelli-space/extra/search.vim
21-
source ~/intelli-space/extra/toggles.vim
22-
source ~/intelli-space/extra/ui_toggles-themes.vim
23-
source ~/intelli-space/extra/windows.vim
24-
source ~/intelli-space/extra/zoom.vim
8+
source ~/.intellimacs/extra/applications.vim
9+
source ~/.intellimacs/extra/bookmarks.vim
10+
source ~/.intellimacs/extra/buffers.vim
11+
source ~/.intellimacs/extra/compile-comments.vim
12+
source ~/.intellimacs/extra/errors.vim
13+
source ~/.intellimacs/extra/files.vim
14+
source ~/.intellimacs/extra/frame.vim
15+
source ~/.intellimacs/extra/git-vcs.vim
16+
source ~/.intellimacs/extra/help-history.vim
17+
source ~/.intellimacs/extra/jump.vim
18+
source ~/.intellimacs/extra/leader.vim
19+
source ~/.intellimacs/extra/run.vim
20+
source ~/.intellimacs/extra/search.vim
21+
source ~/.intellimacs/extra/toggles.vim
22+
source ~/.intellimacs/extra/ui_toggles-themes.vim
23+
source ~/.intellimacs/extra/windows.vim
24+
source ~/.intellimacs/extra/zoom.vim

major.vim

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
" This file contains the most common spacemacs major mode key bindings
2-
source ~/intelli-space/major/compile.vim
3-
source ~/intelli-space/major/debug.vim
4-
source ~/intelli-space/major/go.vim
5-
source ~/intelli-space/major/help-hierarchy.vim
6-
source ~/intelli-space/major/leader.vim
7-
source ~/intelli-space/major/projects.vim
8-
source ~/intelli-space/major/refactoring.vim
2+
source ~/.intellimacs/major/compile.vim
3+
source ~/.intellimacs/major/debug.vim
4+
source ~/.intellimacs/major/go.vim
5+
source ~/.intellimacs/major/help-hierarchy.vim
6+
source ~/.intellimacs/major/leader.vim
7+
source ~/.intellimacs/major/projects.vim
8+
source ~/.intellimacs/major/refactoring.vim

spacemacs.vim

+24-24
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
""" This file contains default spacemacs settings and key bindings
22

33
" Settings
4-
source ~/intelli-space/spacemacs/settings.vim
4+
source ~/.intellimacs/spacemacs/settings.vim
55

66
" Key bindings
7-
source ~/intelli-space/spacemacs/applications.vim
8-
source ~/intelli-space/spacemacs/buffers.vim
9-
source ~/intelli-space/spacemacs/colors.vim
10-
source ~/intelli-space/spacemacs/compile-comments.vim
11-
source ~/intelli-space/spacemacs/errors.vim
12-
source ~/intelli-space/spacemacs/files.vim
13-
source ~/intelli-space/spacemacs/frame.vim
14-
source ~/intelli-space/spacemacs/git-vcs.vim
15-
source ~/intelli-space/spacemacs/help.vim
16-
source ~/intelli-space/spacemacs/insertion.vim
17-
source ~/intelli-space/spacemacs/jump-join-split.vim
18-
source ~/intelli-space/spacemacs/leader.vim
19-
source ~/intelli-space/spacemacs/misc.vim
20-
source ~/intelli-space/spacemacs/narrow-numbers.vim
21-
source ~/intelli-space/spacemacs/projects.vim
22-
source ~/intelli-space/spacemacs/quit.vim
23-
source ~/intelli-space/spacemacs/registers-rings-resume.vim
24-
source ~/intelli-space/spacemacs/search-symbol.vim
25-
source ~/intelli-space/spacemacs/text.vim
26-
source ~/intelli-space/spacemacs/toggles.vim
27-
source ~/intelli-space/spacemacs/ui_toogles-themes.vim
28-
source ~/intelli-space/spacemacs/windows.vim
29-
source ~/intelli-space/spacemacs/zoom.vim
7+
source ~/.intellimacs/spacemacs/applications.vim
8+
source ~/.intellimacs/spacemacs/buffers.vim
9+
source ~/.intellimacs/spacemacs/colors.vim
10+
source ~/.intellimacs/spacemacs/compile-comments.vim
11+
source ~/.intellimacs/spacemacs/errors.vim
12+
source ~/.intellimacs/spacemacs/files.vim
13+
source ~/.intellimacs/spacemacs/frame.vim
14+
source ~/.intellimacs/spacemacs/git-vcs.vim
15+
source ~/.intellimacs/spacemacs/help.vim
16+
source ~/.intellimacs/spacemacs/insertion.vim
17+
source ~/.intellimacs/spacemacs/jump-join-split.vim
18+
source ~/.intellimacs/spacemacs/leader.vim
19+
source ~/.intellimacs/spacemacs/misc.vim
20+
source ~/.intellimacs/spacemacs/narrow-numbers.vim
21+
source ~/.intellimacs/spacemacs/projects.vim
22+
source ~/.intellimacs/spacemacs/quit.vim
23+
source ~/.intellimacs/spacemacs/registers-rings-resume.vim
24+
source ~/.intellimacs/spacemacs/search-symbol.vim
25+
source ~/.intellimacs/spacemacs/text.vim
26+
source ~/.intellimacs/spacemacs/toggles.vim
27+
source ~/.intellimacs/spacemacs/ui_toogles-themes.vim
28+
source ~/.intellimacs/spacemacs/windows.vim
29+
source ~/.intellimacs/spacemacs/zoom.vim

0 commit comments

Comments
 (0)