Skip to content

<= rendered as "less than or equal" in Verilog & VHDL #858

Description

@qrqiuren

In Verilog and VHDL, <= is a symbol of assignment. For example:

always @ (posedge clk or negedge xrstn)
begin
	if(!xrstn)
	begin
		sum_d <= 0;
	end
	else
	begin
		sum_d <= sum;
	end
end

However, in Fira Code, the assignment symbol <= is rendered as a "less than or equal to" sign.

Verilog example

I hope there could be a stylistic option of rendering it.

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

      Milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions