From 88629635215cfb97cec3a161477e56975793b694 Mon Sep 17 00:00:00 2001 From: Tomas Babej Date: Sat, 21 Mar 2015 07:47:43 +0100 Subject: [PATCH] cache: Stress loading the line is the important part in load_buffer --- taskwiki/cache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/taskwiki/cache.py b/taskwiki/cache.py index 02cf64c..55c51c7 100644 --- a/taskwiki/cache.py +++ b/taskwiki/cache.py @@ -87,7 +87,7 @@ class TaskCache(object): def load_buffer(self): for i in range(len(vim.current.buffer)): - task = self[i] + self[i] # Loads the line into the cache def update_buffer(self): for task in self.vimwikitask_cache.values():