編輯Vim中的默認Django設置文件以使用SQLite的最有效方式(即最少的擊鍵次數)是什麼?在Vim中編輯Django設置文件的最有效方法
裸露的設置文件看起來是這樣的:
# Django settings for mysite project.
DEBUG = True
TEMPLATE_DEBUG = DEBUG
ADMINS = (
# ('Your Name', '[email protected]'),
)
MANAGERS = ADMINS
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
'NAME': '', # Or path to database file if using sqlite3.
'USER': '', # Not used with sqlite3.
'PASSWORD': '', # Not used with sqlite3.
'HOST': '', # Set to empty string for localhost. Not used with sqlite3.
'PORT': '', # Set to empty string for default. Not used with sqlite3.
}
}
...
...我希望它看起來像這樣:
# Django settings for mysite project.
DEBUG = True
TEMPLATE_DEBUG = DEBUG
ADMINS = (
# ('Your Name', '[email protected]'),
)
MANAGERS = ADMINS
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
'NAME': 'local.db', # Or path to database file if using sqlite3.
'USER': '', # Not used with sqlite3.
'PASSWORD': '', # Not used with sqlite3.
'HOST': '', # Set to empty string for localhost. Not used with sqlite3.
'PORT': '', # Set to empty string for default. Not used with sqlite3.
}
}
...
我知道這是一個簡單的問題,但我試圖讓Vim更高效,所以我很好奇,如果其他人有更快的方法來處理這個重複的任務。
vim是唯一的選擇嗎?你可以嘗試使用納米? – user1360107 2012-04-27 03:26:34
(1)這個問題是關於Vim的。 (2)在這種情況下,如果Nano比Vim更高效,我會感到驚訝。 – 2012-04-27 03:29:20