├── log.txt ├── login.html ├── .gitignore ├── app.js ├── dir1 └── app1.js ├── dir2 └── app2.js ├── README.md ├── index.html └── index.sublime-workspace /log.txt: -------------------------------------------------------------------------------- 1 | error logs -------------------------------------------------------------------------------- /login.html: -------------------------------------------------------------------------------- 1 | login -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | log.txt 2 | /dir2 -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- 1 | console.log('Hello'); -------------------------------------------------------------------------------- /dir1/app1.js: -------------------------------------------------------------------------------- 1 | console.log(123); -------------------------------------------------------------------------------- /dir2/app2.js: -------------------------------------------------------------------------------- 1 | console.log(123); -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | #MyApp 2 | This is my app -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | My App 5 | 6 | 7 | This is my app 8 | Login Form 9 | 10 | -------------------------------------------------------------------------------- /index.sublime-workspace: -------------------------------------------------------------------------------- 1 | { 2 | "auto_complete": 3 | { 4 | "selected_items": 5 | [ 6 | ] 7 | }, 8 | "buffers": 9 | [ 10 | ], 11 | "build_system": "", 12 | "build_system_choices": 13 | [ 14 | ], 15 | "build_varint": "", 16 | "command_palette": 17 | { 18 | "height": 0.0, 19 | "last_filter": "", 20 | "selected_items": 21 | [ 22 | ], 23 | "width": 0.0 24 | }, 25 | "console": 26 | { 27 | "height": 0.0, 28 | "history": 29 | [ 30 | ] 31 | }, 32 | "distraction_free": 33 | { 34 | "menu_visible": true, 35 | "show_minimap": false, 36 | "show_open_files": false, 37 | "show_tabs": false, 38 | "side_bar_visible": false, 39 | "status_bar_visible": false 40 | }, 41 | "file_history": 42 | [ 43 | ], 44 | "find": 45 | { 46 | "height": 0.0 47 | }, 48 | "find_in_files": 49 | { 50 | "height": 0.0, 51 | "where_history": 52 | [ 53 | ] 54 | }, 55 | "find_state": 56 | { 57 | "case_sensitive": false, 58 | "find_history": 59 | [ 60 | ], 61 | "highlight": true, 62 | "in_selection": false, 63 | "preserve_case": false, 64 | "regex": false, 65 | "replace_history": 66 | [ 67 | ], 68 | "reverse": false, 69 | "show_context": true, 70 | "use_buffer2": true, 71 | "whole_word": false, 72 | "wrap": true 73 | }, 74 | "groups": 75 | [ 76 | { 77 | "sheets": 78 | [ 79 | ] 80 | } 81 | ], 82 | "incremental_find": 83 | { 84 | "height": 0.0 85 | }, 86 | "input": 87 | { 88 | "height": 0.0 89 | }, 90 | "layout": 91 | { 92 | "cells": 93 | [ 94 | [ 95 | 0, 96 | 0, 97 | 1, 98 | 1 99 | ] 100 | ], 101 | "cols": 102 | [ 103 | 0.0, 104 | 1.0 105 | ], 106 | "rows": 107 | [ 108 | 0.0, 109 | 1.0 110 | ] 111 | }, 112 | "menu_visible": true, 113 | "output.find_results": 114 | { 115 | "height": 0.0 116 | }, 117 | "pinned_build_system": "", 118 | "project": "index.sublime-project", 119 | "replace": 120 | { 121 | "height": 0.0 122 | }, 123 | "save_all_on_build": true, 124 | "select_file": 125 | { 126 | "height": 0.0, 127 | "last_filter": "", 128 | "selected_items": 129 | [ 130 | ], 131 | "width": 0.0 132 | }, 133 | "select_project": 134 | { 135 | "height": 0.0, 136 | "last_filter": "", 137 | "selected_items": 138 | [ 139 | ], 140 | "width": 0.0 141 | }, 142 | "select_symbol": 143 | { 144 | "height": 0.0, 145 | "last_filter": "", 146 | "selected_items": 147 | [ 148 | ], 149 | "width": 0.0 150 | }, 151 | "selected_group": 0, 152 | "settings": 153 | { 154 | }, 155 | "show_minimap": true, 156 | "show_open_files": false, 157 | "show_tabs": true, 158 | "side_bar_visible": true, 159 | "side_bar_width": 150.0, 160 | "status_bar_visible": true, 161 | "template_settings": 162 | { 163 | } 164 | } 165 | --------------------------------------------------------------------------------