Open
Conversation
this codes from https://github.com/tpope/vim-abolish/blob/master/plugin/abolish.vim#L120-L127 ```viml let word = substitute(word,'\(\u\+\)\(\u\l\)','\1_\2','g') ``` line was duplicated. ```viml let word = substitute(word,'-','_','g') ``` elixir modules dose not allows kebab-case module name so we do not need it.
Collaborator
|
Is this a hard rule? I see here that underscore-style is a soft convention |
Author
|
It will be ArithmeticError. > Kebab-Case
** (ArithmeticError) bad argument in arithmetic expression: Kebab - Case
:erlang.-(Kebab, Case)It may be possible to declare by putting an atom directly, but it can be ignored because aliases are not available. > defmodule :"Aaa.Bbb.Kebab-Case" do
> end
<<70, 79, 82, 49, 0, 0, 3, 244, 66, 69, 65, 77, 65, 116, 85, 56, 0, 0, 0, 137,
0, 0, 0, 13, 18, 65, 97, 97, 46, 66, 98, 98, 46, 75, 101, 98, 97, 98, 45, 67,
97, 115, 101, 8, 95, 95, 105, ...>>, nil}
> alias :"Aaa.Bbb.Kebab-Case"
:"Aaa.Bbb.Kebab-Case" # expect :"Kebab-Case"
> alias Aaa.Bbb.:"Kebab-Case"
** (SyntaxError) iex:12:15: syntax error before: 'Kebab-Case' |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
this codes from https://github.com/tpope/vim-abolish/blob/master/plugin/abolish.vim#L120-L127
line was duplicated.
elixir modules dose not allows kebab-case module name so we do not need it.