cs136 / seashell

Seashell is an online environment for editing, running, and submitting C programming assignments.
GNU General Public License v3.0
38 stars 19 forks source link

Git Reports Issue #616

Closed cs136 closed 7 years ago

cs136 commented 7 years ago

Submitter: Tom Jacob Email: t5jacob@edu.uwaterloo.ca Hi,

I have the following code: " int get_max_num(const int k) { const int read_num = readnat(); if(read_num == -1) return k; else if(read_num > k) return get_max_num(read_num); else return get_max_num(k); }"

but when I hit ctrl+I to indent, the final (and only) else doesn't get left-justified.

e45lee commented 7 years ago

This is probably a problem with the CodeMirror indenting plugin. We'll take a look, but I will close this for now as it's not high on our priority list right now.