Skip to content

Add Python function for for sorting imports on file save #31

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 48 additions & 0 deletions ftplugin/kotlin.vim
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,51 @@ let b:did_ftplugin = 1

setlocal comments=://
setlocal commentstring=//\ %s

" Function to sort import statements in Kotlin file
python3 << EOL
import re
def SortImports():
"""Sort the imports from the buffer """

buffer_lines = vim.current.buffer

start = 0
end = 0

for i, value in enumerate(buffer_lines):


if re.match("^$", buffer_lines[i]):

# If we have reached the imports yet, just set the start index to current line
if end == 0:
start = i

# We are at the end
else:
break

if re.match("^import ", buffer_lines[i]):
end = i

# Start is currently a blank line.
# Move it to the first import statement
start = start + 1

# End is at the last line, we want this to be the blank
# line after the import list
end = end + 1

# Sort the lines in the provided range
imports = sorted(buffer_lines[start:end])

# Replace the lines
for i, value in enumerate(imports):
buffer_lines[i + start] = value

EOL
map <F6> :python3 SortImports()<CR>

autocmd BufWrite *.kt :python3 SortImports()