Skip to content
This repository was archived by the owner on Jun 25, 2020. It is now read-only.

Commit 9034b37

Browse files
committed
Remove unused files
1 parent b80652a commit 9034b37

File tree

7 files changed

+1
-450
lines changed

7 files changed

+1
-450
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
!*/
55

6-
76
#Whitelist
87
!*.cc
98
!*.h

plugins/snippet.py

Lines changed: 0 additions & 67 deletions
This file was deleted.

src/api.cc

Lines changed: 0 additions & 213 deletions
This file was deleted.

src/api.h

Lines changed: 0 additions & 72 deletions
This file was deleted.

src/api_ext.cc

Lines changed: 0 additions & 15 deletions
This file was deleted.

src/config.cc

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,14 +59,11 @@ void Config::load() {
5959
void Config::find_or_create_config_files() {
6060
auto config_dir = home/"config";
6161
auto config_json = config_dir/"config.json";
62-
auto plugins_py = config_dir/"plugins.py";
6362

6463
boost::filesystem::create_directories(config_dir); // io exp captured by calling method
6564

6665
if (!boost::filesystem::exists(config_json))
67-
filesystem::write(config_json, configjson); // vars configjson and pluginspy
68-
if (!boost::filesystem::exists(plugins_py)) // live in files.h
69-
filesystem::write(plugins_py, pluginspy);
66+
filesystem::write(config_json, configjson);
7067

7168
auto juci_style_path = home/"styles";
7269
boost::filesystem::create_directories(juci_style_path); // io exp captured by calling method

0 commit comments

Comments
 (0)